Summary

Completed

Power Automate desktop app offers three types of loops:

  • Simple loops - use these loops to repeat a set number of times. Use them when you need a loop index.
  • Loop condition - use this loop when you don't know how many repetitions you need, but you have a condition that needs to be true before moving forward.
  • For Each loop - use this loop to go through each item in a list or table.

You can also use the Exit loop action to end a loop early. Put these actions inside a conditional block in the loop.

The loop action at the beginning marks the actions to repeat, and the End loop action marks the end of the loop.