Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365. If you are using an earlier version (Word 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Word, click here: Templates and Page Setup.

Templates and Page Setup

Written by Allen Wyatt (last updated May 25, 2022)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365


Other issues of WordTips have addressed how to use templates. Templates are nothing but special collections of styles, macros, toolbars, and other "goodies" that define your Word environment. You can change how a document looks by simply changing the template attached to the document and then applying styles, as necessary. You change the template attached to a document by using the Templates and Add-ins dialog box. You display this dialog box by displaying the Developer tab of the ribbon and then clicking Document Template in the Templates group. (See Figure 1.)

Figure 1. The Templates and Add-ins dialog box.

When you change templates on a document, not everything from the new template is applied to the document. For instance, the page setup for the template is not applied to a document. This can be frustrating, until you realize that applying it could create quite a few problems. Why? Because page setup information, within Word, is an attribute of sections. This means that you can vary page setup for each section defined in your document. When you attach a new template to a document, how is Word supposed to know which sections' page setup should be overwritten? If it applies the page setup from the template to all the sections in the document, then you could lose quite a bit of work.

There is no such problem, however, when you are first creating a document based on a template. In this case, the new document is simply a reflection of the entire template document.

With this understanding, if you still want to apply the page setup information from a template to the current document, you can do it rather easily using a macro. The following macro can serve as your guide:

Sub ApplyTemplatePageSetup()
    Dim Tmpl As String
    Dim CurDoc As Document

    Tmpl = ActiveDocument.AttachedTemplate
    Set CurDoc = ActiveDocument
    Documents.Add Template:=Tmpl

    With CurDoc.PageSetup
        .LineNumbering.Active = _
          ActiveDocument.PageSetup.LineNumbering.Active
        .Orientation = ActiveDocument.PageSetup.Orientation
        .TopMargin = ActiveDocument.PageSetup.TopMargin
        .BottomMargin = ActiveDocument.PageSetup.BottomMargin
        .LeftMargin = ActiveDocument.PageSetup.LeftMargin
        .RightMargin = ActiveDocument.PageSetup.RightMargin
        .Gutter = ActiveDocument.PageSetup.Gutter
        .HeaderDistance = ActiveDocument.PageSetup.HeaderDistance
        .FooterDistance = ActiveDocument.PageSetup.FooterDistance
        .PageWidth = ActiveDocument.PageSetup.PageWidth
        .PageHeight = ActiveDocument.PageSetup.PageHeight
        .FirstPageTray = ActiveDocument.PageSetup.FirstPageTray
        .OtherPagesTray = ActiveDocument.PageSetup.OtherPagesTray
        .OddAndEvenPagesHeaderFooter = _
          ActiveDocument.PageSetup.OddAndEvenPagesHeaderFooter
        .DifferentFirstPageHeaderFooter = _
          ActiveDocument.PageSetup.DifferentFirstPageHeaderFooter
        .SuppressEndnotes = ActiveDocument.PageSetup.SuppressEndnotes
        .MirrorMargins = ActiveDocument.PageSetup.MirrorMargins
    End With
    ActiveDocument.Close SaveChanges:=wdDoNotSaveChanges

    Set CurDoc = Nothing
End Sub

This macro determines the template in use, creates a new document based on that template, and then copies the page setup information from the new document to the original one. When completed, the new document created by the macro is deleted. You can delete any portions of the macro that you don't feel are applicable. For instance, if you only wanted to change the margins to match your template, all you need to keep in this macro are the four lines that set the margins.

Obviously, this macro overrides any page setup information in your document. (This is the original idea, right?)

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 (11672) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365. You can find a version of this tip for the older menu interface of Word here: Templates and Page Setup.

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

Shading Rows with Conditional Formatting

If you need to shade alternating rows in a data table, you'll want to examine how you can accomplish the task with ...

Discover More

Minimizing the Ribbon for a Document

Want the ribbon to be minimized for a particular document? Word may not allow you to get the exact result you want, as ...

Discover More

Differences between Tables and Named Ranges

Excel allows you to define the data in a worksheet as a table. Doing so can provide some clear benefits over simply ...

Discover More

Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2013. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word 2013 Step by Step today!

More WordTips (ribbon)

Recovered Document becomes Default

Word has a feature called AutoRecover that helps you when Word or Windows crashes. If your Normal template gets messed up ...

Discover More

Editing a Template

Editing a template can be as easy as editing a regular Word document, provided you know where to find the templates. Here ...

Discover More

Protecting the Normal Template During an Update

When Microsoft decides to update your 365 system, you may find that it also overwrites your Normal template. This tip ...

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.