How can I repeat 2 times my Do While activity?
For each transaction you want to repeat it two times ?
Hi
It’s as simple as like this
- Use a assign activity like and mention like this
Counter = 0
Where counter is a int32 variable
- 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
- 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.