FOR NEXT and STEP
This command will define a program loop that will loop a finite number of times. The FOR command requires a variable and two values to begin the loop. The variables stores the first value, and is incremented each loop until it reaches the second value. The size of the increment is determined by the STEP value. The NEXT command is placed to mark the end of the loop. As the variable increments during the loop, you can use its value in many ways. Optionally, you can count in decending order by specifying a high first number, a low second number and a negative step value.

SYNTAX
FOR Variable = value1 TO value2 STEP increment-value
Commands Go Here
NEXT Variable

RELATED INFO
Basic Commands
Glossary

EXAMPLE
IF THEN Commands