Giaoan.link chia sẻ đến các bạn project Google sheet apps script | Dropdown đơn giản lấy dữ liệu từ google sheet – Simple dropdown. Bên dưới đây là video demo minh họa và code apps script để bạn tham khảo.
Bạn truy cập vào đây để tìm kiếm nhiều project thú vị khác.
Các project, excel ngẫu nhiên:
- 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ã apps script trên trang “Code.gs”
function doGet() {
var output = HtmlService.createTemplateFromFile('Index');
return output.evaluate().setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);
}
//Dropdown
function getOptions(){
let MySheets =SpreadsheetApp.getActive();
let CitySheetNHCS = MySheets.getSheetByName("Data");
let data = CitySheetNHCS.getRange('A2:A').getValues().filter(d => d[0] !== "");
let newArr = data.map(d => d[0]);
let uniqueList = [];
newArr.map(r => {
if(uniqueList.indexOf(r) === -1){
uniqueList.push(r);
}
})
return uniqueList.sort().reverse();
};
let options = getOptions().map(d => "<option>" + d + "</option>").join("");
//End Dropdown
Mã trên trang “Index.html”
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
</head>
<body>
<div class="container" style="border: solid 2px #aafe7d; background-color: brown; border-radius: 10px; width: 800px;">
<div style="text-align: center;">
<p>
<pan style="color: white; font-weight:bold;">SIMPLE DROPDOWN DEPENDENT GET VALUE FROM SHEET<br>
Dropdown Lấy Giá Trị Từ Sheet</h5></p>
</div>
<p>
<div class="input-group">
<span class="input-group-text bg-primary text-white"><i class="bi-mailbox"></i> </i>Nhập Email của bạn <span style="color: yellow;"> *</span></span>
<input type="email" class="form-control" id="id_nhcs" name="id_nhcs" autocomplete="off" required>
</div> </p>
<p>
<div class="input-group">
<span class="input-group-text bg-primary text-white"><i class="bi-list-check"></i> </i>Chọn Project bạn yêu cầu <span style="color: yellow;"> *</span></span>
<select class="form-control" id="id_nhcs" name="id_nhcs" autocomplete="off" required>
<option></option>
<?!=options?>
</select>
</div></p>
<button class="btn btn-warning mb-3 w-5 fw-bold btn-outline-success">Gửi yêu cầu</button>
</div>
</body>
</html>