Looping Steps

In general, the Master Flow is executed sequentially, with each node executed after the previous one. Loops are used to create a process that is executed repeatedly (looping) based on a given variable or condition. The process is added to the loop tile, and repeated according to the given condition, before the flow exits the loop and continues to the next node.

  • For Loop: initialize values from a variable and set a condition that will cause the loop to stop running.
  • For Each Loop: iterates through each row in the referenced list variable. The loop is run one time for each variable value; the list variable contains 5 values, the loop will run 5 times.
  • While Loop: continuously perform the loop while the given condition is met. The loop will stop running once the condition is not met.