Use this action to make your process repeat a series of actions until it meets certain criteria before it goes on to the next action in your design. You can create flow logic with this action in several ways, including:

  • Loop through items in a collection 

    Loop through items in a collection applies to the actions inside the loop to each item of a collection of variables. For example, the actions inside the loop might add 2 and then multiply by 3. If you looped through a collection of five integers, then the loop would add 2 to the first integer, multiply the sum by 3, and put the product back into the first integer's slot in the collection. The loop would do the same actions on the second integer, then the third, fourth, and fifth. When it finished with the last item in the collection, the loop would "exit" and your process would move forward to the next action in your process design.

  • Loop until a fixed count is reached 

    Loop until a fixed count is reached applies the actions inside the loop for a number of times that you specify. For example, if you specify 10, then the loop will run 10 times before moving forward to the next action in your process design.

  • Loop while a condition is true 

    Loop while a condition is true applies the actions inside the loop as long as a certain condition is true, such as an integer value being greater than zero. You use the Expression Editor dialog box to construct the condition.

Note: There are two ways to loop while a condition is true. First, you can check the condition before going through the loop. If you check before going through the loop, then if the condition is false, the process will not go through the loop. Second, you can check the condition after going through the loop. In this case, the process will still go through the loop even if the condition is already false. The “extreme case” occurs when the condition is never true. If the process checks the condition before running the loop, then the loop will never execute. If the process checks the condition after running the loop, then even if the condition is always false, the loop will always execute at least once. By default, the process checks the condition before executing the loop.
Name Description
Name Add a descriptive label for the action.
Loop Count Use the + or – buttons to set the number of time to repeat the sequence of commands.
Current Index Data Name Track the current loop count, starting at 0 for the first loop and then by increments by 1 each time.
Maximum Loop Count Enter the maximum number of times, up to 99, that the loop repeats.
Add Until Case Use to enter exit criteria for the action after certain criteria is met.
Until Case Name Add a descriptive label for the case that identifies the output on the action.
Success Add the criteria that, at runtime, determines if the flow runtime exists the loop and takes the case’s configured output.