我得到了'Cell A2‘,我想让settitle 'A2’怎么办?请帮帮我
function MyFunction() {
var sheet = SpreadsheetApp.getActiveSheet();
var value1 = sheet.getRange('A2').getValue();
var form = FormApp.openByUrl("my form url");
var item25 = form.addMultipleChoiceItem();
item25.setTitle('A2')
item25.setChoices([
item25.createChoice('B2'),
item25.createChoice('B2')
])
// ....
}https://stackoverflow.com/questions/60990683
复制相似问题