Created
November 23, 2016 21:55
-
-
Save spences10/e51204af7781ba0afbb47005ec8b5489 to your computer and use it in GitHub Desktop.
Generic VBA errHandler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function {Function Name} | |
On Error GoTo CatchError | |
ExitFunction: | |
Exit Function | |
CatchError: | |
GoTo ExitFunction | |
End Function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment