I'm sorry I can't even show code...I don't know where to start.
Below is the current code (which is fine)...but I am missing the MsgBox components.
Sub SaveAsNameDateScore()
ThisFile = Range("B2").Text & " " & Replace(Range("B5").Text, "/", "-") & " " & Range("C18").Text
ActiveWorkbook.SaveAs Filename:=ThisFile
End Sub
I want there to be a MsgBox pop up if any of the cell values are empty (B2, B5, C18)...I would like for them to be individually prompted. For example...
(B2)MsgBox should read --> Please enter Specialist Name.
(B5)MsgBox should read --> Please enter Audit Completed Date.
(C18)MsgBox should read --> Please enter Average Quality Score.
I simply want the MsgBox to inform, for the user to click OK, and for the macro to exit (or not SaveAs) until the user fixes the errors...
Below is the current code (which is fine)...but I am missing the MsgBox components.
Sub SaveAsNameDateScore()
ThisFile = Range("B2").Text & " " & Replace(Range("B5").Text, "/", "-") & " " & Range("C18").Text
ActiveWorkbook.SaveAs Filename:=ThisFile
End Sub
I want there to be a MsgBox pop up if any of the cell values are empty (B2, B5, C18)...I would like for them to be individually prompted. For example...
(B2)MsgBox should read --> Please enter Specialist Name.
(B5)MsgBox should read --> Please enter Audit Completed Date.
(C18)MsgBox should read --> Please enter Average Quality Score.
I simply want the MsgBox to inform, for the user to click OK, and for the macro to exit (or not SaveAs) until the user fixes the errors...