允许在受保护的工作表和范围谷歌工作表上的临时过滤器视图?

时间:2015-04-28 18:36:15

标签: google-apps-script google-sheets

有没有办法允许在Google工作表中受保护的工作表和范围上进行临时过滤器查看?在仅查看模式下允许临时过滤器视图。任何可用的脚本文件。

1 个答案:

答案 0 :(得分:1)

哇, 我刚才回答了自己的问题。我编写了这个脚本文件来试试它并且它有效。

function Allowfilter(){
  var ss = SpreadsheetApp.getActive();
  var protections = ss.getProtections(SpreadsheetApp.ProtectionType.SHEET);
  for (var i = 0; i < protections.length; i++) {
    var protection = protections[i];
    if (protection.sheet.FILTERVIEWMETHOD()) {
      protection.remove();
    }
  }
}