If X, rest of macro stops

kwp004

Board Regular
Joined
Dec 27, 2016
Messages
93
So I have a macro, but if a certain condition is met, I want the rest of it to stop running. How do I fix the code below? Currently, it keeps going.

Sub ABC()

If Range("D1") = "XXX" Then
MsgBox "WARNING"
Application.EnableEvents = False
End If

[rest of macro]

End Sub
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
I can think of two simple ways to do this:

Sub ABC()
If Range("D1") = "XXX" Then
MsgBox "WARNING"
Application.EnableEvents = False

Exit Sub
End If

[rest of macro]

End Sub

or

Sub ABC()
If Range("D1") = "XXX" Then
MsgBox "WARNING"
Application.EnableEvents = False

GoTo skipToEnd:
End If

[rest of macro]

skipToEnd:
End Sub


Hope this helps.

Tim
 
Upvote 0
1. Place an Exit Sub inside If-Then:
Code:
Sub TestSub
  If Range("D1")="XXX" Then
    msgbox "WARNING"
    Application.EnableEvents = False
    Exit Sub
  End If

  ' Rest of the code

End Sub
2. Use Else part of the If statement:
Code:
Sub TestSub
  If Range("D1")="XXX" Then
    msgbox "WARNING"
    Application.EnableEvents = False
  Else
    ' Rest of the code
  End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,215,379
Messages
6,124,605
Members
449,174
Latest member
ExcelfromGermany

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top