◄QuickSCREEN► ◄Details► ◄Example► ◄Contents► ◄Index► ────────────────────────────────────────────────────────────────────────────── FOR...NEXT - a control flow statement that repeats a block of statements a specified number of times Syntax FOR counter = start TO end [STEP increment] [statements] NEXT [counter [,counter...]] ■ counter is a numeric variable used as the loop counter ■ start is the initial value and end is the final value of the counter ■ increment is the amount the counter is incremented each time through the loop See Also ◄DO...LOOP► ◄WHILE...WEND►