Google sheet Apps Script | Tạo Folder và File từ Giá trị trên Google sheet
Google sheet Apps Script – Tạo Folder và File từ Giá trị trên Google sheet. Trong ví dụ này, Spreadsheet có bảng dữ liệu gồm cột tên phim, năm sản xuất và mô tả. Chúng ta sẽ tạo các folder trên Onedrive có tên là Tên phim và trong folder đó chứa File document có nội dung là Mô tả phim. Tác vụ sẽ quét tất cả các dòng thông qua custom menu. Bạn xem thêm trong video hướng dẫn bên dưới.
Bài học excel ứng dụng:
- 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
//https://giaoan.link chia se tai lieu
function onOpen(){
let ui = SpreadsheetApp.getUi();
ui.createMenu("LẤY TÊN PHIM & MÔ TẢ")
.addItem('Thực hiện','myFunction')
.addToUi();
}
function myFunction() {
const ss = SpreadsheetApp.getActiveSpreadsheet();
const sheet = ss.getActiveSheet();
const lastRow = sheet.getLastRow();
const rootFolder = DriveApp.getFolderById("1q9qKA_47NmWa3m1TFrgIP8f_ix3gPu20");
for(var i=2;i<=lastRow;i++){
let title = sheet.getRange(i,1).getValue();
let description = sheet.getRange(i,3).getValue();
if(title != "title"){
let folderID = rootFolder.createFolder(title).getId();
let folder = DriveApp.getFolderById(folderID);
let docID = DocumentApp.create(title).getId();
let document = DocumentApp.openById(docID);
let paragraph = document.getBody().appendParagraph(description);
DriveApp.getFileById(docID).moveTo(folder);
}
}
}