I am calling a vbYesNo message box.
If the response is Yes, the rest of the module runs as it should. That is what I want to happen on a Yes response.
I would like a No repsonse to exit the Sub, but at the moment, when either Yes or No is clicked, the rest of the module runs.
How do I get A No response to Exit Sub?
Code
Select Case Range("m52")
Case 1
If MsgBox("YOU HAVE BLANK FIELDS. DO YOU WISH TO CONTINUE", vbYesNo, "BLANK FIELDS") = vbYes Then
End If
Regards