Có thể chèn ngày hôm nay thông qua một macro.
Mở Tài liệu Google của bạn và bên dưới Công cụ chọn Trình chỉnh sửa tập lệnh . Điều này mở trình soạn thảo tập lệnh của Google, nơi có thể tạo macro cho Tài liệu Google.
Dán tập lệnh này và lưu nó dưới dạng Macro ngày hoặc một cái gì đó: (cũng có sẵn ở đây )
/**
* 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.');
}
}
Bây giờ làm mới hoặc mở lại tài liệu của bạn và một mục menu mới xuất hiện: Tiện ích . Trong menu này, một mục xuất hiện được gọi là Chèn ngày . Nhấp vào đó để chèn ngày hôm nay tại vị trí con trỏ của bạn.
Để thay đổi định dạng của ngày, bạn cần thay đổi định dạng của người dùng được sử dụng trong tập lệnh. Định dạng có thể chứa các ký tự sau:yyyy-MM-dd'T'HH:mm:ss'Z'
Để làm rõ, tập lệnh này chỉ chèn ngày hôm nay vào vị trí con trỏ cho ngày bạn thực thi tiện ích. Điều đó không chính xác giống như hàm = today () trong Google Sheets, cập nhật ngày thành ngày hiện tại bất cứ khi nào bạn mở bảng tính. Tuy nhiên, tập lệnh này sẽ giúp bạn tránh những rắc rối khi tìm kiếm ngày và nhập vào ngày bạn thực thi tập lệnh.