bottom
Great WordTips!
         
Your e-mail address is safe!
Close Note

Tips.Net > WordTips Home > Formatting > Quickly Formatting Multiple Documents

Quickly Formatting Multiple Documents

Summary: What is the best way to apply consistent formatting across a range of documents? Templates, of course, are very helpful in this regard. There are other formatting considerations which are not controlled by templates, and this tip presents ways you can account for all the formatting you need to apply. (This tip works with Microsoft Word 97, Word 2000, Word 2002, and Word 2003.)

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. Choose the Templates and Add-Ins option from the Tools menu. Word displays the Templates and Add-ins dialog box. (Click here to see a related figure.)
  2. Using the Attach button, locate and select the template you want attached to the current document.
  3. Make sure the Automatically Update Document Styles check box is selected.
  4. Click on OK.

These four 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 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 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 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 difference in 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.

Tip #1516 applies to Microsoft Word versions: 97 | 2000 | 2002 | 2003


Find and Replace Almost Anything! Learn the ins and outs of the powerful search engines available in Word. Learn to search for and replace text, formatting, graphics, and special characters the easy way with WordTips: Find and Replace.

Helpful Links

Ask a Word Question
Make a Comment

Tips.Net Home
Vital News Home

WordTips FAQ
WordTips Premium

Learn Access Now

Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Pet Tips
Word2007 Tips
WordTips

Advertise on the
WordTips Site

 

Great Info!

Get tips like this every week in WordTips, a free productivity newsletter. Enter your e-mail address and click "Subscribe."
     
(Your e-mail address will never be shared with anyone, ever.)