データに日付が記載された列があり、その各日付は本日から何日前かを知りたいです。
ご協力をお願いします。
データに日付が記載された列があり、その各日付は本日から何日前かを知りたいです。
ご協力をお願いします。
First use Read Range activity to read the data from excel file and will give you output as DataTable and say ‘DT’.
And then use ForEach Row activity to iterate one by one row.
ForEach row in DT
Int DateDiff = (Now - Cdate(row(“DateColumnName”))).TotalDays
Thank you so much.
It was a learning experience.
Glad to help you
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.