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