Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
A Continue statement must be followed by Do, For, or While, depending on if the Continue statement appears within a Do...Loop loop, For...Next loop, or While...End While loop.
Error ID: BC30781
To correct this error
If the Continue statement is in a Do...Loop loop, change the statement to Continue Do.
If the Continue statement is in a For...Next loop, change the statement to Continue For.
If the Continue statement is in a While...End While loop, change the statement to Continue While.
Otherwise, remove the Continue statement.