有没有办法允许在Google工作表中受保护的工作表和范围上进行临时过滤器查看?在仅查看模式下允许临时过滤器视图。任何可用的脚本文件。
答案 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();
}
}
}