How can i repeat 2 times my Do While activity?

How can I repeat 2 times my Do While activity?

@mce

For each transaction you want to repeat it two times ?

Hi

It’s as simple as like this

  1. Use a assign activity like and mention like this

Counter = 0

Where counter is a int32 variable

  1. Now with your current DO WHILE loop use this condition

Counter < 2

If you have another condition already in use then place a AND operator like this

Your current condition AND counter < 2

  1. Then inside that Do while loop at last use a assign activity like this

Counter = counter+ 1

Cheers @mce

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