Можливо вставити сьогоднішню дату через макрос.
Відкрийте документ 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'
Для уточнення, цей скрипт просто вставляє сьогоднішню дату в місце розташування курсора за день, коли ви виконаєте утиліту. Це не точно так само, як функція = сьогодні () у Google Таблицях, яка оновлює дату до поточної дати щоразу, коли ви відкриваєте електронну таблицю. Однак цей скрипт позбавить вас від проблеми пошуку дати та введення її в день виконання сценарію.