เป็นไปได้ที่จะแทรกวันที่วันนี้ผ่านมาโคร
เปิด Google เอกสารของคุณและอยู่ภายใต้เครื่องมือการเลือกแก้ไขสคริปต์ นี่เป็นการเปิดตัวแก้ไขสคริปต์ของ Google ที่เป็นไปได้ในการสร้างมาโครสำหรับ Google เอกสาร
วางสคริปต์นี้และบันทึกเป็นDate Macroหรือบางอย่าง: (มีให้ที่นี่ด้วย )
/**
* The onOpen function runs automatically when the Google Docs document is
* opened. Use it to add custom menus to Google Docs that allow the user to run
* custom scripts. For more information, please consult the following two
* resources.
*
* Extending Google Docs developer guide:
* https://developers.google.com/apps-script/guides/docs
*
* Document service reference documentation:
* https://developers.google.com/apps-script/reference/document/
*/
function onOpen() {
// Add a menu with some items, some separators, and a sub-menu.
DocumentApp.getUi().createMenu('Utilities')
.addItem('Insert Date', 'insertAtCursor')
.addToUi();
}
/**
* Inserts the date at the current cursor location in boldface.
*/
function insertAtCursor() {
var cursor = DocumentApp.getActiveDocument().getCursor();
if (cursor) {
// Attempt to insert text at the cursor position. If insertion returns null,
// then the cursor's containing element doesn't allow text insertions.
var date = Utilities.formatDate(new Date(), "GMT", "yyyy-MM-dd"); // "yyyy-MM-dd'T'HH:mm:ss'Z'"
var element = cursor.insertText(date);
if (element) {
element.setBold(true);
} else {
DocumentApp.getUi().alert('Cannot insert text at this cursor location.');
}
} else {
DocumentApp.getUi().alert('Cannot find a cursor in the document.');
}
}
ตอนนี้รีเฟรชหรือเปิดเอกสารของคุณและรายการเมนูใหม่จะปรากฏขึ้น: ยูทิลิตี้ ภายใต้เมนูนี้รายการจะปรากฏขึ้นที่เรียกว่าแทรกวัน คลิกที่เพื่อแทรกวันที่ตำแหน่งเคอร์เซอร์ของคุณ
ในการเปลี่ยนรูปแบบของวันที่คุณต้องเปลี่ยน“ รูปแบบ” ที่ใช้ในสคริปต์ รูปแบบสามารถมีอักขระต่อไปนี้:yyyy-MM-dd'T'HH:mm:ss'Z'
เพื่อชี้แจงสคริปต์นี้จะแทรกวันที่วันนี้ที่ตำแหน่งเคอร์เซอร์สำหรับวันที่คุณเรียกใช้ยูทิลิตี้ ไม่เหมือนกับฟังก์ชัน = today () ใน Google ชีตซึ่งจะอัปเดตวันที่เป็นวันที่ปัจจุบันทุกครั้งที่คุณเปิดสเปรดชีต อย่างไรก็ตามสคริปต์นี้จะช่วยคุณประหยัดปัญหาในการค้นหาวันที่และพิมพ์วันที่คุณเรียกใช้สคริปต์