Formatting Multiple Documents

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


If you routinely receive documents from different people, you may be wondering if there is a way to format the documents so they all look the same. It can be frustrating to work with documents where everyone has a different idea of what looks "good" on a printed page.

The tried-and-true method of standardizing the formatting of information in a document is to simply use styles. If you define a set of styles that cover all your formatting needs, you can then store these in a template that can be easily applied to a multitude of documents. You then attach the template to a document by following these steps:

  1. Display the Developer tab of the ribbon and then click on the Document Template tool in the Templates group. Word displays the Templates and Add-Ins dialog box. (See Figure 1.)
  2. Figure 1. The Templates and Add-ins dialog box.

  3. Click on the Attach button. Word displays the Attach Template dialog box, which looks very much like a standard Open dialog box.
  4. Use the controls in the dialog box to locate and select the template you want attached to your document.
  5. Click on Open. The Attach Template dialog box disappears and the name of the template you selected appears in the Document Template box.
  6. Select the Automatically Update Document Styles check box to make sure that the styles in the template are applied to your document.
  7. Click on OK.

If you don't see the Developer tab necessary for step 1, then you need to make the tab visible. (How you do that depends on the version of Word you are using and has been covered in other issues of WordTips.)

These six simple steps apply the formatting in the template to the open document. What does this mean? It means that the appearance of anything formatted with styles in the current document will be updated to reflect styles with the same names in the template. For instance, if there is a Body Text format in both the document and the template, the style definitions in the template will override those in the document, thereby standardizing the appearance of the document.

There are a couple of big caveats to this, of course. If the document does not utilize styles, or if the character formatting in the document has been explicitly overridden (in other words, the user selected text and used the Font dialog box or ribbon tools to format text), then attaching the template to the document will have no appreciable effect on the text. You will still need to go through the document and manually apply the styles from the newly attached template.

The other thing that is not updated when you attach a new template is information contained in the Page Setup dialog box. Thus, things like paper size, margins, header and footer locations, and orientation are not affected. These need to be either updated manually on a document-by-document basis or done as a whole through the use of a macro. The framework for such a macro is as follows:

Sub MassFormatFiles
    Dim JName As String

    Dialogs(wdDialogFileOpen).Show
    Application.ScreenUpdating = False
    JName = Dir("*.doc")
    While (JName > "")
        Application.Documents.Open FileName:=JName

            'Do formatting here

        ActiveDocument.Close SaveChanges:=wdSaveChanges
        JName = Dir()
    Wend
    Application.ScreenUpdating = True
End Sub

Remember that it is only a framework. To use the macro, you need to replace the "Do formatting here" comment with the actual commands that do the formatting you want done to each file. You can copy these commands from a macro where you recorded the formatting steps, if desired.

When you run the macro, you will see a regular Open dialog box. All you need to do is display the folder whose files you want to process, and then click on Open. Each file in the folder is opened in turn, formatted (with your supplied formatting commands), and then saved again.

You should understand that any time you attempt to do any "mass formatting" across documents, you run the risk of messing the documents up in some unforeseen way. Why? Because there may be some relatively small but important differences between documents that gets clumsily messed up by being overridden when applying the common formats. No amount of automatic formatting will compensate for manually looking through each page of a document to assure that everything appears as it should.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (7354) 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

Using AutoCorrect to Start Macros

As you are typing, AutoCorrect provides a "check" that what you are entering doesn't match some pre-defined error ...

Discover More

Microsoft Word's Amazing Autos

Word provides several tools that can aid in developing your documents. This e-book focuses on a few of those tools. You ...

Discover More

Formatting a SEQ Field Number

The SEQ field is a great way to insert a sequence of numbers within your document. If you want those numbers to be ...

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)

Stubborn Highlighting

When you make extensive edits to a document and those edits include changing the formatting of numbered or bulleted ...

Discover More

Quickly Displaying Formatting Specs

It's easy to apply formatting to text, but often hard (after the fact) to know exactly what was done. If you often need ...

Discover More

Formatting Page Numbers

Need to format the page numbers you added to your document? Word makes it easy, using the same techniques you use to ...

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 nine minus 5?

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.