I am Having so many Excel files inside the folder. The Excel file name is having different date like ‘ExtractedFile_09212020’.,‘ExtarctedFile_09282020’ etc…,
I attached the image kindly refer.
I already extracted the date from this excel file name…
Now My requirement is, From the folder I need to process the excel , which is based on only If the name of the excel File name date contains one of the before one week date like consider from the current date.
Can anyone Guide me please?
As you have already extracted the date from the filename you would just need the comparison date.
Assign ComparisonDate = Today.AddDays(-7)
Then use a flow decision or IF activity, ExtractedDate > ComparisonDate Then…
Do what you would like to do with the excel
Thanks For your Response. I have converted my string to DateTime variable.
Now I am getting Exception like “If :String was not recognized as a valid DateTime.” Main.xaml (11.1 KB)
I have attached my script kindly refer and guide me how should move on.
I’m not sure what is your computer dateformat but for example your string SpltDteFromPath is 09192020 manipulate that to be in your date format e.g. 09/19/2020 then assign SpltDteFromPath to “09/19/2020” & “00:00:00” and then convert it to datetime