While Loop

While loops allow you to continue looping through a set of functions while a condition defined in the expression builder evaluates as true.

In the below example, we are defining a condition where the functions inside of the While loop will continue to execute as long as the count of items in our array is greater than 6.

There are other special commands that can be used with loops which will be seen in the upcoming pages.

Loop: Break Loop: Continue Loop: Save Entry Loop: Remove Entry

Last updated