Google sheet – Apps script | TẠO AUTO ID và CUSTOM Unique ID
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:
- Google sheet apps script | Scan QR code – Filter and get data table display on webapp
- Google sheet apps script Filter to get data to display on webapp, fill background color for data row
- Google sheet Apps script Webapp | Project Quản lý đơn hàng – Cập nhật sản phẩm – In phiếu kiểm soát
- Google sheet Apps script Webapp | Tạo QR Code động – Tự động load mã QR mới khi nội dung mã hóa đổi
- 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
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();
}