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:
- 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
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');
}