Hello,

I am trying to create a macro and include a question box to run one piece of code is one button is selected and a different set of code if the other button is selected. The thing is that I do not want a standard Yes/No Box. I want to define what the two options are to select, is this possible?
I have this code which relates to the Yes/No Box, any ideas what I can change to get this to have the two options rather than selecting Yes or No?

Dim nResult As Long
nResult = MsgBox( _
Prompt:="Really run this macro?", _
Buttons:=vbYesNo)
If nResult = vbno Then
exit sub
End If
Thanks