找不到函数newDataValidation Gscript

时间:2018-09-25 05:34:50

标签: google-apps-script google-sheets

我是google脚本的新手,并且在google脚本中使用newDataValidation函数遇到困难。

function myFunction() {
  var sheet = SpreadsheetApp.openById("1A2B3C");   
  var cell = sheet.getRange("H2").getValue(); //EX 9190
  //Logger.log(cell); 
  var rule = sheet.newDataValidation().requireNumberBetween(1, 100).setAllowInvalid(false).setHelpText('Number must be between 1 and 100.').build();
  cell.setDataValidation(rule);
}
  

错误:TypeError:在对象电子表格中找不到函数newDataValidation。 (第5行,文件“验证”)

0 个答案:

没有答案