Applies To
Workbook Object.
Description
False if changes have been made to a workbook since it was last saved. Read-write.
Remarks
If a workbook has never been saved, its Path will return an empty string ("").
You can set this property to True if you want to close a modified workbook without saving it or being prompted to save it.
See Also
Save Method, SaveAs Method, SaveCopyAs Method.
Example
This example displays a message if the active workbook contains unsaved changes.
If Not ActiveWorkbook.Saved Then MsgBox "This workbook contains unsaved changes." End If
This example closes the workbook that contains the example code and discards any changes to the workbook by setting the Saved property to True.
ThisWorkbook.Saved = True ThisWorkbook.Close