After going back and reading this I was going to delete this thread but I can't. It's not really an issue.
-------------End Edit-------------
Page 33 reads:
"Next, if the control variable i indicates you are looking at the sixth item in the array (index of five), then this row is to be ignored but processing should continue within the loop. Keep in mind that even though the loop control variable starts at 1, the first element of the array is still zero."
My issue with this text is that the If statement inside the referenced For Next loop has nothing to do with arrays at all.
In fact the only line of code that references the array items or indexs (line 4 in the loop) would be skipped when the If statement is true.
If you re-write the code with a For Each statement the text might make sense
Original code:
Code:
For i = 1 To 100 Step 2
If arrMyIntArray1.Count <= i Then Exit For
If i = 5 then Continue For
arrMyIntArray1(i) = i -1
Next