I am not sure I understand what you are really attempting to do, but it
sounds like in your If, Then, Else statement, you could put in Exit Sub
similar to how you would code your On GoTo Error Handler (EH) statement.
'Handle Errors Gracefully
Exit_EH:
Exit Sub
EH:
MsgBox Err.Number & ": " & Err.Description
Resume Exit_EH