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!