Giaoan.link chia sẻ những hiểu biết về Google sheet và apps script, mong giúp được bạn trong những vấn đề bạn cần. Sau đây là project “Google Sheet Thiết đặt công thức trên Apps script (Set Fomula on Apps script). Đây là cách các bạn sử dụng hàm của Google sheet trong hàm của apps script. Việc này sẻ giúp bạn xử lí nhanh chóng hơn trong công việc.
Các bài học excel ứng dụng 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
Mã code.gs
function onOpen(){
let ui=SpreadsheetApp.getUi();
ui.createMenu('THỰC THI HÀM')
.addItem('Tính tổng','setSum')
.addToUi();
}
function setSum() {
let ws=SpreadsheetApp.getActiveSpreadsheet();
let ss=ws.getActiveSheet();
let totalCell=ss.getRange('A12');
totalCell.setValue('Tổng cộng:');
totalCell.setFontWeight("bold");
let sumCell=ss.getRange('B12');
sumCell.setFormula('=sum(B2:B11)');
sumCell.setFontStyle('italic');
sumCell.setFontWeight('bold');
sumCell.setFontColor('red');
}