Increment Date

Hello,

I need to increment a date. That is my date is in the format of mm/dd/year. I have a date like 6/22/2021 and I need to increment it continuously(I have a while loop with count <= 100).

Example:
6/22/2021
6/23/2021
6/24/2021
6/25/2021
.
.
.

Note: In the process, I can increment the date such that the month and year also might change.

Thanks for helping!

Hi
@Yudhisteer_Chintaram1

Sequence.xaml (6.2 KB)
Try out this sequence
if you want to change date change in top assign activity so it will work accordingly

1 Like

@Yudhisteer_Chintaram1

Try below expression.

     CDate("6/25/2021").AddDays(1).ToString("MM/dd/yyyy")
1 Like

Thanks a lot!!!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.