Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have created a macro that gives me a message box when it is run.
Sub MyMacro() MsgBox "My First Macro" When I run it I get a message box that only has 1 option in it "OK" Is there a way to create one that will give me a "Yes" or "No" message |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You will need to go msgbox("MyfirstMacro", vbyesno)
"Ollie" wrote in message ... I have created a macro that gives me a message box when it is run. Sub MyMacro() MsgBox "My First Macro" When I run it I get a message box that only has 1 option in it "OK" Is there a way to create one that will give me a "Yes" or "No" message |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Ryan. works well
Much appreciated "Ryan Jones" wrote: You will need to go msgbox("MyfirstMacro", vbyesno) "Ollie" wrote in message ... I have created a macro that gives me a message box when it is run. Sub MyMacro() MsgBox "My First Macro" When I run it I get a message box that only has 1 option in it "OK" Is there a way to create one that will give me a "Yes" or "No" message |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sorry
this works Sub yesno() MsgBox "hello", vbYesNo End Sub "Ollie" wrote in message ... I have created a macro that gives me a message box when it is run. Sub MyMacro() MsgBox "My First Macro" When I run it I get a message box that only has 1 option in it "OK" Is there a way to create one that will give me a "Yes" or "No" message |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Again Ryan
"Ryan Jones" wrote: Sorry this works Sub yesno() MsgBox "hello", vbYesNo End Sub "Ollie" wrote in message ... I have created a macro that gives me a message box when it is run. Sub MyMacro() MsgBox "My First Macro" When I run it I get a message box that only has 1 option in it "OK" Is there a way to create one that will give me a "Yes" or "No" message |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ollie, here is one way,
Sub Message_box_test() Msg = "Put message here" Title = "Put title here" Response = MsgBox(Msg, vbYesNo+ vbQuestion, Title) If Response = vbNo Then 'your code if no is clicked here MsgBox "you clicked no" Exit Sub ' Quit the macro End If 'your code if Yes is clicked here MsgBox "you clicked yes" End Sub -- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2002 & 2003 "Ollie" wrote in message ... I have created a macro that gives me a message box when it is run. Sub MyMacro() MsgBox "My First Macro" When I run it I get a message box that only has 1 option in it "OK" Is there a way to create one that will give me a "Yes" or "No" message |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Have created the Macro with success
Thank You very much "Paul B" wrote: Ollie, here is one way, Sub Message_box_test() Msg = "Put message here" Title = "Put title here" Response = MsgBox(Msg, vbYesNo+ vbQuestion, Title) If Response = vbNo Then 'your code if no is clicked here MsgBox "you clicked no" Exit Sub ' Quit the macro End If 'your code if Yes is clicked here MsgBox "you clicked yes" End Sub -- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2002 & 2003 "Ollie" wrote in message ... I have created a macro that gives me a message box when it is run. Sub MyMacro() MsgBox "My First Macro" When I run it I get a message box that only has 1 option in it "OK" Is there a way to create one that will give me a "Yes" or "No" message |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I control where the input message appears? | Excel Discussion (Misc queries) | |||
Adding an error message at close of file when criteria are met | Excel Discussion (Misc queries) | |||
Calculations And Order In Macros | Excel Discussion (Misc queries) | |||
when opening excel I receive a message that says file can't be fo. | Excel Discussion (Misc queries) | |||
changing the message in an error message | Excel Worksheet Functions |