Giáo án link (giaoan.link) chia sẻ đến các bạn project Google sheet – Apps script | TẠO AUTO ID và CUSTOM Unique ID. Qua ví dụ này bạn sẽ biết cách tạo ID tự động tăng duy nhất khi bạn submit dữ liệu. Ngoài ra bạn có thể kết hợp để tạo các tiếp đầu ngữ cho ID – như một chuỗi text hoặc dãy số ngày-tháng-năm…
Các project excel khác:
- Googlesheet Apps script Webapp | Tạo trang trắc nghiệm online như Quiz
- Google sheet Apps script | Trang trắc nghiệm Quiz – Cập nhật câu hỏi, trả lời, thời gian đếm ngược
- Google sheets | Number to text, Hàm đọc số thành chữ Ứng dụng taoh hóa đơn, phiếu chi.
- Googlesheet Apps script Webapp | Tạo mã QR Code từ nội dung nhập vào – QR Code Generator
- Google sheet apps script | Dropdown đơn giản lấy dữ liệu từ google sheet – Simple dropdown
- Apps script Webapp CSS – HTML – JS | Tạo ứng dụng Ghi chú trên nền tảng webapp – website
- Google sheet Apps script | Hàm setTimeout định thời gian xóa các trường Input khi click Button
- Apps script Webapp | Sử dụng CSS tạo hiệu ứng sóng nước – Trang trí đẹp mắt cho web và blog.
- Google sheet Apps script Tiện ích tạo mã vạch (barcode) trên webapp
- Google sheet, apps script, webapp | Load và Hiển thị biểu đồ theo năm chọn từ List box
Code trong file “Code.gs”
function addNewRecord() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var shtForm = ss.getSheetByName("Form");
var shtRecords = ss.getSheetByName("Records");
var IDCol = shtRecords.getRange("A2:A").getValues();
var nextID = Math.max.apply(null,IDCol)+1;
var realDate = new Date();
var realDay = realDate.getDate().toString();
var realMonth = realDate.getMonth();
var realMonth1=realMonth + 1;
var realYear = realDate.getFullYear().toString();
var realID = realDay + realMonth1 + realYear + "-" + nextID;
var lastRow = shtRecords.getLastRow()+1;
var myArray = [[nextID,
realID,
shtForm.getRange("C4").getValue(),
shtForm.getRange("C6").getValue(),
shtForm.getRange("C8").getValue(),
shtForm.getRange("C10").getValue()
]];
shtRecords.getRange(lastRow,1,myArray.length,myArray[0].length).setValues(myArray);
shtForm.getRange("C4:C10").clearContent();
}