Syntax

expression.Saved

expression A variable that represents a Workbook object.

Remarks

If a workbook has never been saved, its property returns an empty string ("").

You can set this property to True if you want to close a modified workbook without either saving it or being prompted to save it.

Example

This example displays a message if the active workbook contains unsaved changes.

Visual Basic for Applications
If Not ActiveWorkbook.Saved Then MsgBox "This workbook contains unsaved changes." End If
Close without saving? Has the current workbook been modified since opening? saved saved property Workbook altered since save?

See also: