Add a Yes / No message in code

daniels012

Well-known Member
Joined
Jan 13, 2005
Messages
5,219
I need to add to exsisting code:

If msgbox "Have you printed your worksheets yet?" (new line)

i need them to be able to choose "Yes" Then code below would execute.
Or "No" then the code would end without going further.

Any help, thank You

Michael
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Michael

Something like this?
Code:
rsp = MsgBox("Have you printed your files yet?", vbYesNo)
Select Case rsp
      Case vbYes
             ' execute code
      Case vbNo
             Exit Sub
             ' End
End Select
 
Upvote 0
Code:
Dim lResponse as Long
lResponse = MsgBox("Have you printed your worksheets yet?", vbQuestion + vbYesNo)
If lResponse = vbNo then Exit Sub
 
Upvote 0
Code:
If MsgBox("Have you printed your worksheets yet?", vbYesNo) = vbNo Then Exit Sub
 
Upvote 0
Sub test()
Dim Question As VbMsgBoxResult

Question = MsgBox("Have you printed your worksheets yet?", vbQuestion + vbYesNo, "Answer me NOW!")

If Question = vbNo Then Exit Sub

'your code here

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,577
Members
449,039
Latest member
Arbind kumar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top