View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ron Coderre Ron Coderre is offline
external usenet poster
 
Posts: 698
Default reset "on error resume next"

Restore default error checking with this statement:

ON ERROR GOTO 0

(Not especially Intuitive)

Does that help?
***********
Regards,
Ron

XL2002, WinXP


"Edward" wrote:

I have a section of code that I want to use "on error resume next" to
bypass certain errors but then I want to restore the code to using the
normal error function without using an error handling routine (just
getting the visual basic popup stating that an run-time error
occurred).

How can I do that?

Thanks.

Edward