My loop is currently only running once when it should keep looping. Currently when reviewing the flow I cannot see the issue as the condition is not meant which means variable keepLooping remains true. Pictures attached, help would be greatly appreciated or even an image with a working flow to copy.
This is a "Do Until" loop, which means it will only loop until a condition is met.
In the screenshot, you have it set to Loop Until your value is TRUE.
So in the conditional, the NO path is chosen, then at the end it sets the boolean to TRUE. So then the loop will exit since it only loops until it's true. I think it's a little confusing because you have the boolean variable named "KeepLooping" and you set it to TRUE. So it "sounds" like it should keep looping, but it's a DO UNTIL true loop. Hope that makes sense LOL.
Easiest way to fix this in your screenshot is change the loop until condition. Set it as "KeepLooping is equal to FALSE"
Hi @Daniel37 ,
The 'do until' action will execute once and then check the condition at the first time.
In other words, no matter what condition you set, it will run at least once.
The 'do until' action you set is to stop when the variable is true, so it stops for the second time.
Best Regards,
Wearsky
Michael E. Gernaey
497
Super User 2025 Season 2
David_MA
436
Super User 2025 Season 2
Riyaz_riz11
244
Super User 2025 Season 2