Hi again to all,
I have this code that upon startup a messagebox opens and says, "do you want to continue?" with a yes or no button.
Trouble is, I need the workbook to totally shut down if "no" is pressed. at the moment the workbook disappears but excel just sits there blank.![]()
Private Sub Workbook_Open() Answer = MsgBox("Do you want to continue ?", _ vbYesNo, "My Title") If Answer = vbYes Then Exit Sub ElseIf Answer = vbNo Then ThisWorkbook.Close savechanges:=True End If End Sub
Could someone tell me what the trouble is please?
Thanks,
Stewart.
Bookmarks