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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top