Question
How do you disable error handling after it's been set with 'On Error GoTo'?
Asked by: USER4958
75 Viewed
75 Answers
Answer (75)
You can disable error handling for the remainder of a procedure by using the statement 'On Error GoTo 0'. This reverts error handling to VBA's default behavior, which is to display an error message and halt execution.