Skip to main content

Loop Actions

Repeat for each item in

Iterates over each item in a list.

Image

ParameterDescription
Current Item variableName of the variable that will hold the item currently being processed.
Collection of Items variableVariable (list, array…) that contains all items to iterate over.

Repeat until

Repeats a block while a condition is true.

Image

ParameterDescription
ConditionLogical expression evaluated each loop; loop ends when false.

Stop the loop

Immediately exits the loop.

Skip to next iteration

Skips to the next iteration.