Можно вставить сегодняшнюю дату через макрос.
Откройте документ Google и в разделе « Инструменты» выберите « Редактор скриптов» . Откроется редактор скриптов Google, в котором можно создавать макросы для Документов Google.
Вставьте этот скрипт и сохраните его как макрос даты или что-то еще: (также доступно здесь )
/**
* 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 Sheets, которая обновляет дату до текущей, когда вы открываете электронную таблицу. Однако этот сценарий избавит вас от необходимости искать дату и вводить ее в тот день, когда вы выполняете сценарий.