Inserting the Saved Date In a Header or Footer

Written by Allen Wyatt (last updated April 1, 2021)
This tip applies to Excel 97, 2000, 2002, and 2003


There may be times when you want your header or footer to contain the date of the last time that your workbook was saved. Normally, this is not information you can set in Excel. However, you can use the following macro to force the information into the proper place:

Sub MyFooter()
Dim mh As String
On Error Resume Next
mh = ActiveWorkbook.BuiltinDocumentProperties("Last Save Time")
If Err = 440 Then
   Err = 0
   mh = ActiveWorkbook.BuiltinDocumentProperties("Creation Date")
   If Err = 440 Then
      Err = 0
      mh = "Not Set"
   End If
End If
mh = Left(mh, 8)
ActiveSheet.PageSetup.LeftFooter = "Saved: " & mh
End Sub

There are a number of items to note in this macro. First of all, it attempts to determine the last date (and time) that the workbook was saved. If that information cannot be determined, then it extracts the date it was created. Finally, if that cannot be found, then it sets the footer to "Not Saved."

Notice that there is some error handling done in this macro. The reason is that Excel will return an error if a particular document property (BuiltinDocumentProperty in this case) is not set. The error needs to be intercepted and handled, which is done here.

You should note that this macro, once run, will set the left footer to the desired information. That information will not change again until you run the macro again. Thus, if you always want an up-to-date date in the footer, then you should either run the macro periodically (perhaps right before printing), or set it up to run whenever you open your document.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2055) applies to Microsoft Excel 97, 2000, 2002, and 2003.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Copying Headers and Footers

Need to get headers and footers from one document to another? You can use the steps in this tip to help make quick work ...

Discover More

Printing Shortcut Key Assignments

Shortcut keys are great timesavers when you don't want to remove your hands from the keyboard to mess with the mouse. ...

Discover More

Exact Matches with DSUM

The DSUM function is very handy when you need to calculate a sum based on data that matches criteria you specify. If you ...

Discover More

Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!

More ExcelTips (menu)

Date Last Edited

When adding headers or footers to your worksheets, you may want to include the date that the workbook was last edited. ...

Discover More

Putting a Different Date in a Header

Today's date is easy to add to a header, but what if you want to add a date that is adjusted in some manner? Adding ...

Discover More

Using a Different Footer on Secondary Pages

When printing a worksheet, you may want to have the footer different on the first page of your document than it is on ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 1 + 1?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.