I have a module with a number of procedures, each of which is called by a separate statement. I'm attempting to include error traps in each procedure, however the traps are activated even when there isn't an error.
Example
public sub Macro1()
*some DIM statements*
On Error GoTo Errhandler
*some code
*
errhandler: MsgBox "Error! Contact developer"
Exit Sub
Call AnotherRoutine
End Sub
In case this had to do with the order of the coding, I tried putting the errhandler statement below the Call statement, but I still had the same issue.