如果我选择培训报告,我想输入橙色的数据,另一种颜色被锁定。
如果我选择会议报告,我想输入橙色的数据,另一种颜色被锁定。
如果我选择辅导报告,我想输入橙色的数据而另一种颜色被锁定。
答案 0 :(得分:0)
您可以尝试Class Protection
访问和修改受保护的范围和工作表。受保护的范围可以保护静态范围的单元格或命名范围。
// Protect range A1:B10, then remove all other users from the list of editors.
var ss = SpreadsheetApp.getActive();
var range = ss.getRange('A1:B10');
var protection = range.protect().setDescription('Sample protected range');
// Ensure the current user is an editor before removing others. Otherwise, if the user's edit
// permission comes from a group, the script will throw an exception upon removing the group.
var me = Session.getEffectiveUser();
protection.addEditor(me);
protection.removeEditors(protection.getEditors());
if (protection.canDomainEdit()) {
protection.setDomainEdit(false);
}
有关详细信息,请参阅Tutorial以及有关Protection Class的文档。