I am using in the first part of my program
on error go to start
Suppose in my second part I am again using
on error resume next
This second erro
There is a difference between an answer and a solution. Sometimes we just need an answer, warnings appreciated, and let us learn by experience that it is not actually a good solution. That being said, I found this:
You need to use On Error GoTo -1 or Err.Clear to reset error trapping.
Check this answer I posted a few months ago for a more detailed explanation.