I got this piece of code running with no error; The resulting spreadsheet does show a locker next to the sheet name; Protected Sheets and Ranges show only specific range is unprotected, but the other user opening the file can edit protected ranges:
var editors = newSpreadsheet.getEditors();
for (var i = 0; i < editors.length; i++) {
newSpreadsheet.removeEditor(editors[i]);
};
var sheetToProtect = newSpreadsheet.getSheetByName('CheckList');
var rngMonitorUnprotect = sheetToProtect.getRange("F11:F14");
var protection = sheetToProtect.protect();
protection.setUnprotectedRanges([rngMonitorUnprotect]);
What am I missing here?
Explanation / Issue:
As per the official documentation, this is the correct way to apply a protection to the sheet.
The issue is that you didn't remove the list of editors from the
protection
object. What you did instead was to remove them from the spreadsheet file itself.Essentially, when you add a protection to a sheet, all the current editors automatically have the right to edit the sheet (or sheet range) regardless of the protection. So your script needs to remove them from that right, this is why we execute this:
Protect only the range
F11:F14
of the sheet:Protect the full range of the sheet except for
F11:F14
: