In this tutorial we will be looking at the Fixed Iteration of the For-Do-Loop. This loop is designed to run for a fixed duration specified by the developer or the end user. The structure is:
For i = iStart To iStop Step iStep
Next i
We also look at the loop terminators if required and the start, stop and step of the loop.
Skipping a cycle: If i = 5 Or i = 9 Then Continue For
this will skip cycle 5 and 9 however each cycle of the loop requires a conditional test and is not efficent but sometimes necessary.