| title | Workbook.Saved property (Excel) | |
|---|---|---|
| keywords | vbaxl10.chm199147 | |
| f1_keywords |
|
|
| api_name |
|
|
| ms.assetid | 37eb8e08-2bfa-8065-2520-a71e291ab50c | |
| ms.date | 05/29/2019 | |
| ms.localizationpriority | medium |
True if no changes have been made to the specified workbook since it was last saved. Read/write Boolean.
expression.Saved
expression A variable that represents a Workbook object.
If a workbook has never been saved, its Path 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.
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[!includeSupport and feedback]