Skip to main content

Workbook.Saved property

Table of contents
  1. Syntax
  2. Remarks
  3. Examples

True if no changes have been made to the specified workbook since it was last saved. Read/write Boolean.

Syntax

expression.Saved

expression A variable that represents a Workbook object.

Remarks

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.

Examples

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

Leave a comment

Your email address will not be published. Required fields are marked *

Format your code: <pre><code class="language-vba">place your code here</code></pre>