You created a For...Next loop construct, but did not properly terminate the loop. A For...Next loop construct must end with a Next statement. The following demonstrates the correct structure of a For...Next loop construct.

CopyCode imageCopy Code
Forcounter = startToend [Stepstep]
    [statements]
    [ExitFor]
    [statements]
Next

To correct this error

  • Make sure that the For...Next loop construct includes all the necessary parts.

See Also