Trong project google sheet, google doc và apps script này, mình chia sẽ là “Tự động điền dữ liệu từ Google sheet sang Mẫu trên Google Doc” – Autofill google Doc template from google sheet. Nếu như bạn đã từng sử dụng mergmail trên MS Word thì ở đây nó cũng tương tự nhưng chúng ta thực hiện trên dịch vụ đám mây của Google. Bạn xem video hướng dẫn bên dưới và code mâu app script.
Các project khác bạn có thể xem thêm:
- 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(){
const ui = SpreadsheetApp.getUi();
ui.createMenu('AutoFill Docs')
.addItem("Create New Docs", "createNewGoogleDocs")
.addToUi();
}
function createNewGoogleDocs() {
const googleDocTemplate = DriveApp.getFileById('1Z_bSOXrT7BswSVae9NDcCTsUQO9Aw4WEGEmQlFZjsj4');
const destinationFolder = DriveApp.getFolderById('12A-67fVuIm-ckK2SgY0WbvHqK_Xm6j5-')
const sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Data')
const rows = sheet.getDataRange().getValues();
rows.forEach(function(row, index) {
if (index === 0) return;
if (row[5]) return;
const copy = googleDocTemplate.makeCopy(`Thư mời Ông (bà) ${row[0]} tham dự Hội nghị`, destinationFolder)
const doc = DocumentApp.openById(copy.getId())
const body = doc.getBody();
//const friendlyDate = new Date(row[3]).toLocaleDateString();
body.replaceText('{{Hovaten}}', row[0]);
body.replaceText('{{Diachi}}', row[1]);
body.replaceText('{{Donvi}}', row[2]);
body.replaceText('{{Dienthoai}}', row[3]);
body.replaceText('{{Email}}', row[4]);
doc.saveAndClose();
const url = doc.getUrl();
sheet.getRange(index +1, 6).setValue(url)
})
}