I think neither methods below is ideal but of the two, which would be preferable?
Option Explicit
Sub FirstMethod()
On Error GoTo FirstErrhandler
' Do something first
On Error GoTo 0
On Error GoTo SecondErrhandler
' Do something second
On Error GoTo 0...