Flow Designer | Limit Do the Following iteration count.

ajith2
Kilo Explorer

Hi,

I am using Do the following unitl flow logic in my flow and I would like this loop to run just 3 times but I cannot find the way to specify this in the until condition..

Any Suggestions on how to achieve this?

3 REPLIES 3

Community Alums
Not applicable

Hi Mike, Thanks for your reply. I tried but it is giving the same value. Its not getting increased. If you have tried this and tested that it works fine. Do let me know how you have configured.

deenbandhusingh
Giga Expert

I was having same problem. I figured out the solution.

I created a flow variable named count, incrementing it inside do...until and the until condition is count = 3.

 

This I had to do because the Do...Until works opposite of Do...While. So in our case, the code is

Do

---Something---

Until

count is 3.