我已经创建了此功能来更新Google表单。 我已经在Google SpreadSheet上创建了一个图像,并且已将功能“ updateForm”分配给该图像。
但是当我单击图像时,我收到一条错误消息“找不到函数updateform”。
我已经尝试重新加载电子表格和脚本。 我已经为脚本创建了一个新文件。 我已经更改了函数的名称。
function updateForm()
{
var spreadsheet = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/1qixFLXsIHO5Oj4GyKc5XxMbdKR6nw7x2GKNfqXTVrYA/edit');
var sheetLoc = spreadsheet.getSheetByName("Location");
var Accueil =FormApp.openByUrl(spreadsheet.getRange("Location!F6").getValue());
var listitem=Accueil.getItems();
for (var e=0;e<listitem.length;e++){
if(listitem[e].getTitle()=="Quelle machine souhaitez-vous louer ?"){
var rangeLocation = sheetLoc.getDataRange();
var valueLocation= rangeLocation.getValues();
var listeLocation=[];
var nbrLoc=0;
for(var i=1;i< rangeLocation.getLastRow();i++){
if(valueLocation[i][0]!= ""){
listeLocation[nbrLoc]=valueLocation[i][0];
nbrLoc=nbrLoc+1
}
}
listitem[e].asMultipleChoiceItem().setTitle("Quelle machine souhaitez-vous louer ?").setChoiceValues(listeLocation);
}
}
}
我只需在SpreadSheet中单击图像即可启动此功能