View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Bill Schanks Bill Schanks is offline
external usenet poster
 
Posts: 23
Default Error Handling - On Error GoTo doesn't trap error successfully

One thing I would suggest ... in the error handling routine do you
have:

Goto xxx

OR

Resume xxx

If you have goto then the error routine will not catch a second error,
as it is technically still in the error handling step.