Loop a sequence in an indefinite number of times

I have a relatively extensive automation process, part of this process needs to be repeated as many times as necessary.

This part of the process that needs to be repeated I programmed as follows:

Using the Read Cell Activity I get two conditions: Value greater than Zero or Value equal to Zero.

Using Activity IF I determine that: if the result is greater than Zero a record must be performed. Or it ends the process.

Therefore, I need this step to be repeated whenever the Read Cell Activity result is greater than Zero and if not, the step is completed.

I researched and obtained the use of the For Each Activity, however, being necessary to determine, through the Counter, the amount of time to be repeated.

How could I do this repetition at an indefinite quantity?
And end the sequence by moving to the next?

Thanks!

1 Like

Fine
We can use WHILE or DO WHILE loop
Let’s for DO WHILE sloop where inside the do container put all the sequence of activities including read cell activity with output variable named as str_output and others
Where in the condition mention as
Convert.ToInt32(str_output) > 0
If the output of read cell is greater than zero then the above mentioned set of activities will get executed
Else it will come out of the loop and process with next step

Hope this would help you
Kindly try this and let know for any queries or clarification
Cheers @Also_Pizzaria

1 Like

Yes, I used it as suggested and it all worked out !!!

Thank you my friend!!!

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