Perhaps I do not understand what you want me to do but...
I trace the code in break mode a step at a time. Execution just stops. No
errors of any kind. It does not go into break mode. If I stop (via a break)
before the problem line and use the Debug menu to skip over it, the next line
works but what the skipped line does is essential to my macro so if I comment
it out my macro does not do what I intend.
> Comment out the Error statments and fix the errors by testing for them, not
> jumping around these errors.
[quoted text clipped - 18 lines]
> >
> > Any ideas?
Joel - 29 Jan 2008 18:56 GMT
The On Error Resume Next doesn't tell you when you hit an error it just
executes the next line as if nothing is wrong. Comment out this statement
and see if you get an error.
> Perhaps I do not understand what you want me to do but...
>
[quoted text clipped - 26 lines]
> > >
> > > Any ideas?