Hi
I have procedure to populate message box before the run my macro
what I want the message box should show from the second running when click the button for my macro , not from the first time click the button , is it possible , guys?
I have procedure to populate message box before the run my macro
VBA Code:
ans = MsgBox("are you sure you want to continue ?", vbYesNo)
If ans = vbNo Then Exit Sub
'my macro
'
'