View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default remove the default,"Do you want to save changes made to xxx.xls?"

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


--
Gary's Student


"Philly Flash" wrote:

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