Applying Standard Headers and Footers to a Document

Written by Allen Wyatt (last updated October 28, 2023)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021


Aaron often receives documents from others in which he needs to standardize the appearance of the document. He can attach a template, which allows him to apply styles to the text in the document. What he really needs, though, is a way to attach standard headers and footers to the document. He's defined those in his template, but attaching the template doesn't add the headers and footers. He wonders if there is an easy way to add standard headers and footers to these documents.

When you attach a template to an existing document, what you are essentially doing is providing the document access to the set of styles and macros stored in the template. The only way for the document to acquire the page- or section-level characteristics of the template is to create a document based on that template. This is why many people choose to follow this general sequence:

  1. Create a brand-new document based on the template. (This is the target document.)
  2. Open the document received from others; the one you want to standardize. (This is the source document.)
  3. Copy the text from the source document and paste it in the target document.

If you cannot, for some reason, go this route, the next best thing is to create a set of Building Blocks that define the text you want in your header and footer. You can then save time by using the Building Blocks to add the headers and footers into any document you wish—including the one you want to standardize.

Finally, if you wanted to, you could create a macro to add in the desired headers and footers. The macro doesn't have to be fancy; here's one that simply adds standardized header and footer text to each section in the document:

Sub MyHeadersAndFooters()
    Dim i As Long

    For i = 1 To ActiveDocument.Sections.Count
        With ActiveDocument.Sections(i)
            .Headers(wdHeaderFooterPrimary).Range.Text = "Header Text Here"
            .Footers(wdHeaderFooterPrimary).Range.Text = "Footer Text Here"
        End With
    Next i
End Sub

In order to use the macro, simply replace "Header Text Here" and "Footer Text Here" with your desired header and footer text. This macro is only a starting point, as it doesn't apply any special styles or include any fields (such as page numbers) that you may need.

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 (2728) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021.

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

Setting Table Values to Three Decimal Places

If you import information into a document from another program, the values you import may not be exactly to your liking. ...

Discover More

Selecting a Paper Size

Most of the time we print on whatever is a standard paper size for our area, such as letter size or A4 paper. However, ...

Discover More

Highlighting Values that are 10x a Baseline Value

Sometimes the hardest part of getting your conditional formatting rules to work properly is figuring out the proper way ...

Discover More

Do More in Less Time! Are you ready to harness the full power of Word 2013 to create professional documents? In this comprehensive guide you'll learn the skills and techniques for efficiently building the documents you need for your professional and your personal life. Check out Word 2013 In Depth today!

More WordTips (ribbon)

Creating Page Footers and Headers

Headers and footers can add a final, professional touch to your printed document. Here's the quick way to add the headers ...

Discover More

Editing Headers and Footers

Headers and footers are a nice final touch in a document. You can easily edit them by using the methods described in this ...

Discover More

Putting a File Name and Path in a Default Footer

Want to add a filename and path to the footer of a template? You might be confused by what you see in documents created ...

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 one less than 9?

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 ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu 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.