View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Ken Johnson Ken Johnson is offline
external usenet poster
 
Posts: 1,073
Default On Error Goto 0


Perico wrote:
What does this do that having no Error catcher would not do? How is this
used? In testing, it simply takes you to the error; but wouldn't having no
"On Error" expresion do the same thing? Or, is this used when you want to
trap an error in a specific part of your code?


It turns off error trapping, so that the previous On Error Resume Next
or On Error GoTo Label no longer has an effect.

Ken Johnson