Bugünün tarihini bir makroyla eklemek mümkündür.
Google Dokümanınızı açın ve Araçlar altında Komut Dosyası düzenleyici'yi seçin . Bu, Google’ın komut dosyası düzenleyicisini Google Dokümanlar için makro oluşturmanın mümkün olduğu yerde açar.
Bu betiği yapıştırın ve Tarih Makrosu veya benzeri bir şey olarak kaydedin : ( burada da bulunur )
/**
* 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.');
}
}
Şimdi belgenizi yenileyin veya yeniden açın; yeni bir menü öğesi belirir: Yardımcı programlar . Bu menünün altında Tarih Ekleme adı verilen bir öğe belirir . İmleç pozisyonunuza bugünün tarihini eklemek için bunu tıklayın.
Tarihin formatını değiştirmek için senaryoda kullanılan “format” ı değiştirmeniz gerekir. Biçim aşağıdaki karakterleri içerebilir:yyyy-MM-dd'T'HH:mm:ss'Z'
Açıklığa kavuşturmak için, bu komut dosyası yalnızca, yardımcı programı uyguladığınız günün imleci konumuna bugünün tarihini ekler. Bu, tam olarak, e-tabloyu her açışınızda tarihi güncelleyen Google E-Tablolar'daki = today () işleviyle aynı değildir. Bununla birlikte, bu komut dosyası size tarihi arama ve komut dosyasını yürüttüğünüz gün yazma zorluğundan kurtarır.