View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jerry C Jerry C is offline
external usenet poster
 
Posts: 1
Default Macro for "close w/no save"?

In Word, I have created a couple helpful macros and placed
them on the toolbar with an icon. The piggybank will
close the open document and save all changes. The garbage
can will close the document and NOT save any changes.
This precludes me having to respond to the "do you want to
save changes?" prompt each time (annoying!).

They work slick in Word.

Now, I'd like to have the same feature in Excel, but the
macro design or language is different and I can't figure
it out.

Here's the simple one-line of code for the "close no save"
macro (in Word):
ActiveDocument.Close SaveChanges:=wdDoNotSaveChanges

What would be the equivilent in Excel?

Thanks in advance.

Jerry