Msg Box in IF statement?
On a MsgBox you can set the YES,NO,CANCEL buttons in msgbox parameters...
resp=Msgbox(........,VbYESNO)
IF resp=vbYES then
IF resp=VbNO then
HTH
"Elise148" wrote:
How would I go about putting a Msg Box in an IF statement in VBA???
For example, I would want to say, if something is clicked in another message
box, proceed with the macro, if something else is clicked, stop the macro?????
|