Saving

D

DRANDON

How can I make a workbook close without prompting to save?
This file has many links to other workbooks, and it has many viewers.

Thanks
 
Z

Zone

I take it that you do NOT want changes saved. If that's right, enter
this code in the ThisWorkbook module. James

Private Sub Workbook_BeforeClose(Cancel As Boolean)
ThisWorkbook.Saved = True
End Sub
 
Top