I\'m reading up on how to use On Error Resume Next and I\'m trying to figure out how long that line will apply to the program. On the Microsoft site, I found t
On Error Resume Next
To answer your question "How long does On Error Resume Next work?"
The answer is: until the next definition of On error ...
On error ...
So if you define an On error resume next, it will skip every error until you define a On error goto 0 or On error goto label
On error resume next
On error goto 0
On error goto label