我想在我的Google工作表中选定的标签上为各种不同的范围添加单元格保护,我目前有以下脚本
function Protection2() {
// Protect range
var ss = SpreadsheetApp.getActive();
var range = ss.getRange('B16:BU16');
var protection = range.protect().setDescription('This is now a protected range');
}
我想在此脚本中添加更多范围以保护我有大约50个范围。
非常感谢任何帮助
谢谢