> 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

 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) में किसी सेल को एडिट करने के बाद आप उसे प्रोजेक्ट कर सकते हैं वह भी आप सिर्फ की मदद से |






                                                                                                                                                                                                            code

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 टिप्पणियाँ