For...Next Statement

  1. For counter = expression1 to expression2 [Step increment]

    1. [statements]

    Next [counter]

Repeats the execution of a block of statements for a specified number of times.

More:

Example - For...Next Statement