mgsbox question

W

Wu

In my marco, I want to show a message box to ask " do you have open the
1244.xls file" and to show two button " yes" and "no" for user select.

If user select "yes", my marco will go on,

select "no", it will quit the marco
 
K

Ken Snell \(MVP\)

Actually, this can be done using the Condition part of a macro action:

Condition: MsgBox("Your Message", 4, "Your Title") = 7
Action: StopMacro
 
Top