Book1.xlsx (8.8 KB)
find days between today and given date
In New Column ( Number Of Days )
while looping through all rows use this expression to get the diff
Checkout this expression
Datediff(DateInterval.Day,Cdate(CurrentRow("Date").ToString),now)
or
Datediff(DateInterval.Day,DateTime.ParseExact(CurrentRow("Date").ToString,{"dd.MM.yyyy hh:mm:ss","MM/dd/yyyy hh:mm:ss","MM-dd-yyyy","dd-MM-yyyy"},System.Globalization.CultureInfo.InvariantCulture,System.Globalization.DateTimeStyles.None),now)
Regards
Sudharsan
i didn’t understand this can you please elaborate
there are 2 date in the excel
1/31/2023 & 1/23/2023
how to find due date in this less than 20 MEANS NO DUE
or Equal DUE
or greater than 20 DUE
@Krishan_Rapswal
For Example, create the Status column in F in excel
Add the if condition below to the Assign activity in Loop
If Condition is Cint(CurrentRow(4).ToString)>=20
Then assign CurrentRow(5)="Due"
Else assign CurrentRow(5)="No Due"
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.