Execute statements while Num is in the range First to Last.
Parameter
Description
Num
This is the iteration variable.
First
Set Num to this value initially.
Last
Continue looping while Num is in the range. See Step Inc below.
Inc
If this numeric value is greater than zero then the for loop continues as long as Num is less than or equal to Last. If this numeric value is less than zero then the for loop continues as long as Num is greater than or equal to Last. If this is omitted then one is used.