What is the simplest VBA code to exit a sub using On Error?
Thanks, mikeburg
What is the simplest VBA code to exit a sub using On Error?
Thanks, mikeburg
Do uou mean like this
![]()
Option Explicit Sub test() On Error GoTo test_Error 'Your code On Error GoTo 0 Exit Sub test_Error: MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure test of Module Module1" End Sub
Hope that helps.
RoyUK
--------
For Excel Tips & Solutions, free examples and tutorials why not check out my web site
Free DataBaseForm example
Hello Mikeburg,
The easiest thing to do is jump to a line label at the end of your code. Place the line label before the End Sub statement.
Sincerely,![]()
Private Sub ErrTest() On Error GoTo Fault N = 1/0 ' The line label must always start in column 1, and end with a colon (:) Fault: If Err.Number <> 0 Then MsgBox Err.Description End If End Sub
Leith Ross
I see what you mean.
I thought something like On Error Exit Sub?
Thanks, mikeburg
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks