Please Note: This article is written for users of the following Microsoft Word versions: 97, 2000, 2002, and 2003. If you are using a later version (Word 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Word, click here: Field in Footer Won't Update.

Field in Footer Won't Update

Written by Allen Wyatt (last updated June 9, 2018)
This tip applies to Word 97, 2000, 2002, and 2003


Christina has a version number that is on the title page of her document, and she updates it manually. She uses a field in the footer of the document to reference this version number. When she updates the version number on the title page, it doesn't update on the footer, even if she presses Ctrl+A and then presses F9. Christina wonders why the field isn't updating.

The reason that this doesn't work is because Word utilizes the concept of "layers" or "stories" in putting a document together. Your main document text is on one layer and other elements are on different layers, such as the graphics layer or the header/footer layer. When you are in the main document an you press Ctrl+A, you are selecting all the text in the main document layer, and the subsequent action (pressing F9) affects only what you've selected. If you want to affect the fields in the header or footer, you need to place the insertion point within the header or footer and then use Ctrl+A.

There are easier ways, however. One easy way is to use a macro to update all fields, regardless of where they are located. How you do this has been covered in other issues of WordTips, but here is a rather simple macro that will do the updating:

Sub UpdateAllFields1()
    Dim doc As Document
    Dim sRange As Range
    Dim sField As Field

    Set doc = ActiveDocument
    For Each sRange In doc.StoryRanges
        For Each sField In sRange.Fields
a           sField.Update
a       Next sField
a   Next sRange
End Sub

The macro steps through all of the defined story ranges (layers) in the document and then steps through each field in each of those ranges. The result is that all the fields end up getting updated.

Another simple, effective way to do it is shown here:

Sub UpdateAllFields2()
    ActiveDocument.PrintPreview
    ActiveDocument.ClosePrintPreview
End Sub

Note that this macro only displays Print Preview for the current document and then closes Print Preview. This results in the fields in the document being updated—regardless of location—because Word automatically updates fields whenever you print or use Print Preview.

Another approach is to change how you are using your fields. If the field is not updating, then you are probably using a REF field in the footer to reference the bookmarked version number on the title page. Instead, delete the bookmark and apply a unique style to the version number. (The style should be used only for the version number.) You can then use a STYLEREF field in the footer, and your version number is duplicated there. The benefit of this approach is that STYLEREF fields are, for some strange reason, updated dynamically whenever the source information (your version number) changes.

Note:

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

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (12246) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Field in Footer Won't Update.

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

Printing Outside the Boundaries All the Time

If Word thinks you are going to print in an area of the page that isn't printable, it will let you know. If you don't ...

Discover More

Struggling with New Changes to Track Changes

In the latest versions of Microsoft 365, the company has introduced an entirely new way to deal with markup comments. ...

Discover More

Copying Rows between Worksheets Based on a Text Value

Want to move data from one worksheet to another based on a text value in a column. There are a couple of ways you can ...

Discover More

Discover the Power of Microsoft Office This beginner-friendly guide reveals the expert tips and strategies you need to skyrocket your productivity and use Office 365 like a pro. Mastering software like Word, Excel, and PowerPoint is essential to be more efficient and advance your career. Simple lessons guide you through every step, providing the knowledge you need to get started. Check out Microsoft Office 365 For Beginners today!

More WordTips (menu)

Quickly Inserting the Date Your Way

Tired of messing with inserting the date and then changing it to a format that is more to your liking? There's a quick ...

Discover More

Limiting Directories in the FILENAME Field

When you use the FILENAME field in a document, it can include the full path name that leads to your file. This might be ...

Discover More

Maintaining Fields in a Merged Document

When merging documents, you may want to include some fields in the merged documents. For some fields this is impossible, ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, 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 eight minus 3?

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 Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, 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.