Michael has attended:
Excel Advanced course
Excel VBA Intro Intermediate course
Access VBA course
VBA Excel Message Box
Is it possible to rename the buttons in a message box and have a specific routine run depending on the button chosen (i.e. Rename default 'Yes' to 'Routine 1' and so forth for a total of three buttons). Would I be better placed using a series of radio buttons ? Context : Upon opening a workbook a pop up message box will ask the user which action they would like to perform.
Many Thanks.
RE: VBA Excel Message Box
Hi Michael
Thanks for your question
I think it would be better if instead of using a message box, you create a popup form with command buttons captioned Routine one, Routine two etc.
You can the call your routines from the button's on click event
Alternatively, as you suggest you could select the routine by using an option group
Regards
Stephen