remove the default,"Do you want to save changes made to xxx.xls?"

P

Philly Flash

I am trying to remove the default question, "Do you want to save changes made
to xxx.xls?" when I leave any excel worksheet. Thank you, John J. Donadio
 
G

Gary''s Student

Hi John:

Enter this macro:

Sub fast_quit()
Application.DisplayAlerts = False
Application.Quit
End Sub

and assign a short-cut key to it. If you run the macro, it will quit Excel
without the warning.


Be Careful
 
P

Philly Flash

Sorry, but I do not know how to create an excel macro. I tried but kept
running into problems. Could you be more specific. I do know how to get to
the macro creator (tools, record a macro) but that's about as far as I get. I
tried cutting and pasting the info you gave.
 
Top