google form ดึงข้อมูลจาก google sheet Script ส่งข้อมูลจาก Google Sheet ไปยัง Google Form function updateForm(){ // call your form and connect to the drop-down item var form = FormApp.openById(“****formurl****“); var namesList = form.getItemById(“****data-item-id****“).asListItem(); // identify the sheet where the data resides needed to populate the drop-down var ss = SpreadsheetApp.getActive(); var names = ss.getSheetByName(“Sheet1”);…