A loop will repeat a block of computer code a number of times. Counted loops, or For Loops allow you to repeat a block of code a fixed number of times.
Dim intCounter as Integer
For intCounter = 1 to 10
'Some code here
Next intCounter
Dim intCounter as Integer
For intCounter = 1 to 100 Step 5
'Some code here
Next intCounter
Dim intCounter as Integer
For intCounter = 10 to 0 Step -2
'Some code here
Next intCounter