Exit sub and message box based on certain conditions

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,603
Office Version
  1. 2021
Platform
  1. Windows
I have the following snippet of code below



Code:
 Sheets("recon").Select
If Range("d8") = 0 Then
MsgBox "No JNL required"
Exit Sub
End If


I would like it amended so that if range D8 or D9 is 0, then message box to be activated and message to say "No JNL required" and Macro to exit

If range D8 or D9 is not zero, then message box to state "JNL uploaded and ready to be imported"




Your assistance in amended the code is most appreciated
 
Last edited:

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Try this:
Code:
Sub For_Howard()
'Modified  11/9/2018  1:41:42 AM  EST
Sheets("recon").Select
If Range("D8") = 0 Or Range("D9").Value = 0 Then MsgBox "No JNL required": Exit Sub
If Range("D8") <> 0 Or Range("D9").Value <> 0 Then MsgBox "JNL uploaded and ready to be imported"
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,179
Members
453,021
Latest member
Justyna P

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