How to protect cell after edit in Google sheets using appscript in hindi
दोस्तों आज के इस आर्टिकल में मैं आपको बताऊंगा कि आप किस तरीके से गूगल शीट (How to protect cell after edit in Google sheets using appscript in hindi) में किसी सेल को एडिट करने के बाद आप उसे प्रोजेक्ट कर सकते हैं वह भी आप सिर्फ की मदद से |
function sheetProtect() {
let sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Sheet1");
let row = sheet.getActiveCell().getRow();
let col = sheet.getActiveCell().getColumn();
let val =sheet.getRange(row,col).getValue();
if(val!=""){
let protection= sheet.getRange(row,col).protect().setDescription("Value not Allowed");
protection.removeEditors(protection.getEditors())
if(protection.canDomainEdit()){
protection.setDomainEdit(false);
}
}
}
0 टिप्पणियाँ
Thanks For Message Me if any issue please feel free to contact