Google sheet Apps script | Tự động Sắp xếp dữ liệu theo cột bất kỳ Auto Sort by Column
Google sheet Apps script, tự động Sắp xếp dữ liệu theo cột bất kỳ (Auto Sort by Column). Sau đây là code được sử dụng trong apps script, bạn có thể xem thêm video hướng dẫn ở bên dưới.
Các bài excel ứng dụng thực tế:
- 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 apps cript
function onOpen(){
autoSort();
}
function onEdit(){
autoSort();
}
function autoSort() {
let ws = SpreadsheetApp.getActiveSpreadsheet();
let ss=ws.getSheetByName("Data");
let startingRange = ss.getDataRange();
let data =startingRange.getValues();
data.shift();
data.sort((a,b)=>a[0]-b[0]) //ascemding
//data.sort((a,b)=>b[3]-a[3]) //decreasing
let formulaRange = ss.getRange(2,4,data.length)
let formulas=formulaRange.getFormulas()
let finalRange=ss.getRange(2,1,data.length,data[0].length)
finalRange.setValues(data)
formulaRange.setFormulas(formulas)
}