Quagensia® N Edition “For Loop” actions have four sections.
The first is the “For Loop Initialization Statements: Statements to Run Before the First Iteration of the Loop Only” section. Its statements execute a single time only, before any other part of the for loop executes.
The second is the “For Loop Condition: Condition to Check at the Beginning of Each Iteration of the Loop” section. If the condition or conditions in this section are true, the statements in the “For Loop Body: Statements to Run on Each Iteration of the Loop” section (the third section) are executed, followed by the statements in the “For Loop Post-Loop Statements: Statements to Run at the End of Each Iteration of the Loop” section (the fourth section).
The second, third, and fourth sections of the loop are executed repeatedly, until the condition or conditions in the “For Loop Condition: Condition to Check at the Beginning of Each Iteration of the Loop” section are false, at which point execution of the code continues at the first line of code after the loop.
Note that Quagensia T Edition does not have the “For Loop” action, but it does have the “While Loop” and “Do While” loop actions, both of which can do anything that a “For Loop” action can do.
The following advanced tutorial on lists and loops was made for Quagensia N Edition, but can be followed almost word-for-word in Quagensia T Edition as well.