> How to calculate expiry date of given month using appscript in hindi
एक्सेल और एडवांस एक्सेल से जुड़े सभी लेटेस्ट विडियो पाने के लिए मेरे यूट्यूब चैनल को अभी सबस्क्राइब करे लिंक नीचे है धन्यवाद |

How to calculate expiry date of given month using appscript in hindi

 How to calculate expiry date of given month using appscript in hindi

दोस्तों आज के इस आर्टिकल में मैं आपको बताऊंगा कि आप किस तरीके से ऐप स्क्रिप्ट की मदद से गूगल सीट में कोई भी डेट दी गई है और उस डेट का (How to calculate expiry date of given month using appscript in hindi) आप एक्सपायरी डेट निकालना चाहते हैं तो आप कैसे निकाल पाएंगे |


Download Sheet For Practice




function expiryDate() {
  let sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Sheet1");
  let dataRange = sheet.getRange("A2:A30").getValues();
  for(var i=0;i<dataRange.length;i++){
    let month = dataRange[i][0].toString();
    let expiryDate;
    if(month.includes('to')){
      let lastMonth=month.split('to')[1];
      let lastDate= new Date(2023,new Date(lastMonth+'1,2023').getMonth()+1,0).getDate();
      expiryDate = lastDate+""+lastMonth+" "+2023;
    }else{
       let date= new Date(2023,new Date(month+'1,2023').getMonth()+1,0).getDate();
       expiryDate = date+""+month+" "+2023;
    }
    sheet.getRange(i+2,2).setValue(expiryDate);
  }
}


एक टिप्पणी भेजें

0 टिप्पणियाँ