I have an excel sheet which has a date column, where i need to filter it up for next 90 days that is from today to next 90 days records. when i tried writing the logic as
“Dattim.AddDays(90).ToString(“MM/dd/yyyy”)”
it is fetching the data but not in sequence and also the process is breaking with format exception. How can I solve this issue. kindly help, thanks in advance Let me know for any further clarifications to solve this issue.
I have a excel sheet which needs to be filtered for next 90 days from today’s date (to calculate expiry). I have a date column where dates are present in the form of MM/DD/YYYY. This filtration process should be dynamic because this process is going to be scheduled for every 1st and 15th day of the month. I will get new files every month with different data. so i want it to be filtered dynamically.