ম্যাক্রোর মাধ্যমে আজকের তারিখ সন্নিবেশ করা সম্ভব।
আপনার গুগল ডকুমেন্টটি খুলুন এবং সরঞ্জামগুলির অধীনে স্ক্রিপ্ট সম্পাদক নির্বাচন করুন । এটি গুগলের স্ক্রিপ্ট সম্পাদকটি খুলবে যেখানে গুগল ডকুমেন্টের জন্য ম্যাক্রোগুলি তৈরি করা সম্ভব।
এই স্ক্রিপ্টটি পেস্ট করুন এবং এটি তারিখ ম্যাক্রো বা অন্য কিছু হিসাবে সংরক্ষণ করুন : (এছাড়াও এখানে উপলভ্য )
/**
* 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'
স্পষ্ট করার জন্য, এই স্ক্রিপ্টটি কেবল আপনি যে দিন ইউটিলিটি চালাবেন তার জন্য কার্সার অবস্থানে আজকের তারিখটি কেবল সন্নিবেশ করিয়েছে। এটি গুগল শিটগুলিতে ঠিক = আজ () ফাংশনের মতো নয়, যা আপনি যখনই স্প্রেডশিট খুলবেন তখন বর্তমান তারিখে তারিখ আপডেট করে। যাইহোক, এই স্ক্রিপ্টটি আপনি স্ক্রিপ্টটি কার্যকর করার দিন তারিখটি অনুসন্ধান এবং টাইপ করার ঝামেলা বাঁচাবে।