I want to know if I can do this because it does not seem to work right.

I start out with using an On Error Goto ER1 and then after that part I want to do an On Error Resume Next in the same sub. But the resume next part does not seem to take affect. Like this:

On Error GoTo ER1

<some code goes here...>

ER1:

<more code here>

On Error Resume Next

<and more code here...>


But the On Error Resume Next does not work it seems. I can't change the On Error in the same sub?

Thanks!