Resetting error reporting after On Error GoTo

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

I have an "On Error GoTo" statement at the beginning of a macro to test for a
particular thing. Once that is done, is there a way of resetting error
reporting as if the "On Error GoTo" was never there?
 
Hi Steve

On Error GoTo 0

disables any enabled error handler in the current procedure.

If this post helps click Yes
 
Back
Top