在Drive Team中使用脚本保护工作表

时间:2019-01-30 13:14:56

标签: google-sheets protection

您好,我正在尝试运行保护脚本。该文件基于驱动器团队。 该脚本从工作表中的按钮运行。 用户必须复制“主表”输入数据,然后按一下按钮。

以下脚本:

var MainOwner = Session.getActiveUser().getEmail();
var CoOwner = "pippo@pippo.com";
var SheetName = "Test";
var UserOK = [
    MainOwner, 
    CoOwner
  ];
var protection = spreadsheet.getActiveSheet().protect();
  protection.setDescription(Sheet_Name +'_Protection')
  .addEditors(UserOK);

最后,工作表受到保护,但驱动器团队中允许所有用户使用编辑器。

我无法理解流程中的错误。 谢谢

0 个答案:

没有答案