Flow Designer | Limit Do the Following iteration count.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-16-2020 12:52 AM
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?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-16-2020 12:28 PM
Create a counter.
This thread can help: https://community.servicenow.com/community?id=community_question&sys_id=09da4485db48d8d81cd8a345ca96...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-16-2020 08:46 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2021 08:37 AM
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.