我正在使用此代码为 Google 电子表格中的数组创建数据验证,但我不断收到一条错误消息,提示我无权调用 cell.setDataValidation ()。
var array = ["1", "2", "3", "4", "5", "6"]
var cell = SpreadsheetApp.getActive().getActiveCell();
var rule = SpreadsheetApp.newDataValidation().requireValueInList(array, true).setAllowInvalid(false).build();
cell.setDataValidation(rule);
我做错了什么?