Loop

This allows users to repeat a section of Logic for a certain number of times. Loops require a Global Data Item to be used to count to the number of times the loop is performed. Create a Global Data Item in the Information Store - make sure that the Global Data Item is number-based.

Parameters

  • From: Starting value of global data item
  • Global Data Name: Name of global data item used to count the loop
  • To: Ending value of global data item

Comments

If “From” and “To” are the same only one pass will be made through the loop lines.

If “From” is greater than “To” the lines in the loop will not be obeyed even once.

Annotated Loop