I have the following snippet of code below
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
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: