View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
The Code Cage Team[_56_] The Code Cage Team[_56_] is offline
external usenet poster
 
Posts: 19
Default Yes No box no working properly

This is what you need:
Response = MsgBox("Do All results have a Formulation Number", vbYesNo)
If Response = vbNo Then
MsgBox ("Results NOT saved")
Else
ResultsDatabase1
ResultsDatabase2
MsgBox ("Results saved")
End If

Regards,
The Code Cage Team
www.thecodecage.com/forumz

"Miree" wrote:

I have a section of code which brings up the meassage box
but it doesnt matter what i select it always shows Results saved, Can
someone show me how to fix this so that if i select no it exits the sub and
shows Results NOT saved

Response = MsgBox("Do All results have a Formulation Number", vbYesNo)
??If Response = "" Then MsgBox ("Results NOT saved")

ResultsDatabase1
ResultsDatabase2

MsgBox ("Results saved")

Thanks