Lets say I have a For loop similar to this:
Sub forLoop()
Dim firstRow As Integer
Dim lastRow As Integer
Dim aRow As Integer
firstRow=5
lastRow=200
For aRow = firstRow to lastRow
If (something) Then //lets say it happened when aRow = 18
aRow=aRow+1 //=> aRow=19
...
End If
Next aRow //which one ? will next aRow be 19 or 20?
And I increment a aRow variable inside the loop. Would it result in that variable being incremented twice as much?


