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 Resume
statement appeared outside error-handling code, or the code jumped into an error handler even though there was no error.
To correct this error
Move the
Resume
statement into an error handler, or delete it.Jumps to labels cannot occur across procedures, so search the procedure for the label that identifies the error handler. If you find a duplicate label specified as the target of a
GoTo
statement that isn't anOn Error GoTo
statement, change the line label to agree with its intended target.