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 टिप्पणियाँ
Thanks For Message Me if any issue please feel free to contact