| A | B |
| The counting variable | intCount |
| Declaring a counting variable | Dim intCount As Integer |
| Initializing a counting variable to 0 | For intCount = 1 |
| The start of a For Next loop | For |
| The end of a For Next loop | Next ... |
| Incrementing the counting variable by 1 | Next intCount |
| A loop that goes 10 times | For intCount = 1 To 10 |
| A loop that goes 5 times | For intCount = 1 To 10 Step 2 |
| A loop that goes 7 times | For intCount = 1 To 7 |
| A loop that goes 20 times | For intCount = 1 To 40 Step 2 |