How to increase the time in the Duration field of the Delay activity

hello to the whole community,

could someone help me for my problem? I describe my need:
I would like to loop the “Delay” activity and with an “Assign” activity increase the time of one minute with each loop.

Example:

Delay-------------> Duration = 00:01:00

Assign -------------> Duration = Duration + 00:01:00

You can make it simpler by using slightly different syntax as an argument of the delay activity:

TimeSpan.FromMinutes(yourIntVariable)

For example, TimeSpan.FromMinutes(1) is 1 minute delay.

You can then easily increase the delay by using an Int Variable to whatever you want.

You can also use those if you want:
.FromMilliseconds
.FromHours
etc.

2 Likes

Thank you for responding to my request