Automation Editor
...
Action functionality
Loops
Break loop
1min
It is possible to halt a loop's iterations with the break loop:

Break loops only make sense to be performed when a certain condition is met:

Break loops are scoped to their nearest loop.
If a break loop is performed within a nested loop, only the nested loop is halted and the parent loop(s) will continue to iterate normally.
Updated 03 Mar 2023
Did this page help you?