Get our FREE VBA eBook of the 30 most useful Excel VBA macros.

Automate Excel so that you can save time and stop doing the jobs a trained monkey could do.

Claim your free eBook


Obtaining the save status of a file using VBA

Save status of file using VBA

Often when creating a macro, we may need to know the save status a file we are working with.  This post explores some of the options available for understanding and controlling this important aspect of file control.

Using the .saved property

Within the Visual Basic Editor we can view the Saved property of a workbook.

VBA Saved Status

If you save a workbook it will change to True, but once you make a single change it will revert back to False.

Effectively, this property displays whether the current file has changed from the previously saved version.

Sub saveStatus()

If ActiveWorkbook.Saved = False Then
    MsgBox "The file has changed since it was last saved"
Else
    MsgBox "The file has not changed since it was last saved"
End If

End Sub

Even though it seems like this should be a read-only property, it is possible to change this it with VBA.  This will trick Excel into thinking that the current file has or has not been changed.

It is this property which Excel uses to know whether to show the following message when closing the workbook.

VBA Staved Status - Save changes

There are two ways to avoid this message:

Method 1 – setting DisplayAlerts = False

Using the code below will not result in the “want to save your changes” message box appearing and the file will not be saved.

Application.DisplayAlerts = False
ActiveWorkbook.Close
Application.DisplayAlerts = True

Method 2 – use .saved = true

Just like method 1, using the code below will not result in the “want to save your changes” message box appearing and the file will not be saved.

ActiveWorkbook.Saved = True
ActiveWorkbook.Close

Has a file ever been saved?

We have established what the .saved property can do.  But, it is missing one a piece of information . . . it doesn’t tell us if the file has ever been saved.

If you create a new document in Excel it’s saved status displays as True.  But once a change is made it to the workbook, it changes to False.  So, the True/False status of the saved property does not help us to know if a file has ever been saved.  But, we also have a number of options here.

Method 1 – Test the file path

A workbook which has never been saved will have a blank value for the File Path.

If ActiveWorkbook.Path = "" Then MsgBox "Not saved"

Method 2 – Use FILEDATETIME function

The FILEDATETIME function in VBA takes just one argument, a full File Path, and it returns the last time the file was modified.

Debug.Print FileDateTime(ActiveWorkbook.Name)

If the file has been saved, a date and time will be returned to the Immediate Window, if not, an error will be returned.

VBA Staved Status - Error Message

By catching the error you will know if the file has ever been saved.

On Error Resume Next
Debug.Print FileDateTime(ActiveWorkbook.Name)
If Err.Number <> 0 Then
    MsgBox "The file has never been saved"
End If
On Error GoTo 0

Method 3 – Use BuiltinDocumentProperties

This approach is similar to the FILEDATETIME function.

Debug.Print ActiveWorkbook.BuiltinDocumentProperties("Last save time")

If the file has been saved a date and time will be returned to the Immediate Window, if not an error will be returned.

VBA Saved Stauts - Error Message Builtin Properties

Just like the FILEDATETIME function you can catch the error if the file has never been saved.

Conclusion

When writing VBA code there are various options and settings we can use to understand and control how and if a file is saved.  In a number of applications this is crucial to ensure the macro will run smoothly.


Headshot Round

About the author

Hey, I’m Mark, and I run Excel Off The Grid.

My parents tell me that at the age of 7 I declared I was going to become a qualified accountant. I was either psychic or had no imagination, as that is exactly what happened. However, it wasn't until I was 35 that my journey really began.

In 2015, I started a new job, for which I was regularly working after 10pm. As a result, I rarely saw my children during the week. So, I started searching for the secrets to automating Excel. I discovered that by building a small number of simple tools, I could combine them together in different ways to automate nearly all my regular tasks. This meant I could work less hours (and I got pay raises!). Today, I teach these techniques to other professionals in our training program so they too can spend less time at work (and more time with their children and doing the things they love).


Do you need help adapting this post to your needs?

I'm guessing the examples in this post don't exactly match your situation. We all use Excel differently, so it's impossible to write a post that will meet everybody's needs. By taking the time to understand the techniques and principles in this post (and elsewhere on this site), you should be able to adapt it to your needs.

But, if you're still struggling you should:

  1. Read other blogs, or watch YouTube videos on the same topic. You will benefit much more by discovering your own solutions.
  2. Ask the 'Excel Ninja' in your office. It's amazing what things other people know.
  3. Ask a question in a forum like Mr Excel, or the Microsoft Answers Community. Remember, the people on these forums are generally giving their time for free. So take care to craft your question, make sure it's clear and concise.  List all the things you've tried, and provide screenshots, code segments and example workbooks.
  4. Use Excel Rescue, who are my consultancy partner. They help by providing solutions to smaller Excel problems.

What next?
Don't go yet, there is plenty more to learn on Excel Off The Grid.  Check out the latest posts:

Leave a Reply

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