Es ist möglich, das heutige Datum über ein Makro einzufügen.
Öffnen Sie Ihr Google-Dokument und wählen Sie unter Extras den Skript-Editor aus . Dadurch wird der Skript-Editor von Google geöffnet, in dem Makros für Google Documents erstellt werden können.
Füge dieses Skript ein und speichere es als Date Macro oder so: (auch hier erhältlich )
/**
* 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.');
}
}
Aktualisieren Sie nun Ihr Dokument oder öffnen Sie es erneut, und ein neuer Menüpunkt wird angezeigt: Dienstprogramme . Unter diesem Menü wird ein Element mit dem Namen Datum einfügen angezeigt . Klicken Sie darauf, um das heutige Datum an Ihrer Cursorposition einzufügen.
Um das Format des Datums zu ändern, müssen Sie das im Skript verwendete „Format“ ändern. Das Format kann folgende Zeichen enthalten:yyyy-MM-dd'T'HH:mm:ss'Z'
Zur Verdeutlichung fügt dieses Skript lediglich das aktuelle Datum an der Cursorposition des Tages ein, an dem Sie das Dienstprogramm ausführen. Dies ist nicht genau dasselbe wie die Funktion = today () in Google Sheets, mit der das Datum beim Öffnen der Tabelle auf das aktuelle Datum aktualisiert wird. Dieses Skript erspart Ihnen jedoch die Mühe, das Datum nachzuschlagen und es an dem Tag einzugeben, an dem Sie das Skript ausführen.