How do you disable error handling after it's been set with 'On Error GoTo'?

Responsive Ad Header

Question

Grade: Education Subject: Support
How do you disable error handling after it's been set with 'On Error GoTo'?
Asked by:
75 Viewed 75 Answers

Answer (75)

Best Answer
(217)
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.