- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-15-2023 06:28 AM - edited ‎02-15-2023 06:32 AM
Hi Community Memebers,
I'm stuck with a silly thing in Flow Designer. I have an email step inside a Do - Until loop. In email subject I want a counter like "Reminder 1" - When 1st loop runs, Then "Reminder 2" when 2nd time that loop runs. Basically I want a Do-Until loop counter. When the loop ends the counter should reset.
Please help me with this! Screenshot is attached for the reference.
Solved! Go to Solution.
- Labels:
-
flow designer
-
Workflow Automation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2023 08:21 AM
Hi @Utpal Dutta,
What @Elijah Aromola was suggesting is this (you can either count up or down):
Count down:
- Create a flow variable
- Set the flow variable with the targeted count
- Add your do the following until logic
- Specify until as '<flow variable> IS 0' OR 'status is up'
- Add logic 'Wait for time'
- Add the Send Email (consider using Send Notification instead) action within the do until logic
- Add the Set Flow Variables flow logic next
- Set the variable to itself
- But apply a Transform function to substract 1
Example screenshot:
Hope this helps!
Please mark as solved if this answered your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-15-2023 01:16 PM
You should be able to create a flow variable for this and increment it at the end of your do loop.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-16-2023 12:03 AM
I tried creating a flow action with Input and Output variables but it seems to be not working. If you know how to do it then can you explain the process?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2023 08:21 AM
Hi @Utpal Dutta,
What @Elijah Aromola was suggesting is this (you can either count up or down):
Count down:
- Create a flow variable
- Set the flow variable with the targeted count
- Add your do the following until logic
- Specify until as '<flow variable> IS 0' OR 'status is up'
- Add logic 'Wait for time'
- Add the Send Email (consider using Send Notification instead) action within the do until logic
- Add the Set Flow Variables flow logic next
- Set the variable to itself
- But apply a Transform function to substract 1
Example screenshot:
Hope this helps!
Please mark as solved if this answered your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-24-2025 11:11 AM
Thank you, i was looking for this