किसी मैक्रो के माध्यम से आज की तारीख डालना संभव है।
अपना 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'
स्पष्ट करने के लिए, यह स्क्रिप्ट उपयोगिता के निष्पादन वाले दिन के लिए कर्सर स्थान पर आज की तारीख को सम्मिलित करती है। Google पत्रक में = आज () फ़ंक्शन के समान ठीक नहीं है, जो कि जब भी आप स्प्रैडशीट खोलते हैं, तो दिनांक को वर्तमान तिथि में अपडेट करता है। हालाँकि, यह स्क्रिप्ट आपको तारीख को देखने और उस दिन टाइप करने की परेशानी से बचाएगा, जिस दिन आप स्क्रिप्ट निष्पादित करते हैं।