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

Tips.Net > WordTips Home > Formatting > Headers and Footers > Quickly Formatting Footers in Documents with Many Sections

Quickly Formatting Footers in Documents with Many Sections

Summary: If you have a document that includes many, many sections, you may want to change each section so that its headers and footers are the same as the section before it. This tip explains how to do the conversion manually, as well as with a very quick little macro. (This tip works with Microsoft Word 97, Word 2000, Word 2002, and Word 2003.)

Jake Rashford has a document that is created automatically by a program other than Word. The document has many pages in it, but each page is created as a separate section. Jake is looking for a way to quickly format the document so that the headers and footers are the same, beginning with the second section of the document. (The first page, which is also its own section, contains a cover sheet.)

You can make the necessary changes manually by following these steps:

  1. Press Ctrl+Home to go to the beginning of your document.
  2. Choose Header and Footer from the View menu so you can see the Header and Footer dialog box. The Header and Footer dialog box should display the header for the first section of your document.
  3. Click the Show Next button. This displays the header for the second section of the document.
  4. Make changes to the header so it looks as you want it to look.
  5. Click the Show Next button. This displays the header for the next (third) section of the document.
  6. Click Link to Previous. You'll see a dialog box asking if you want to delete this header and link to the previous section. Click Yes.
  7. Repeat steps 5 through 6 until you work through all the headers in the document.
  8. Close the Header and Footer dialog box.

If you have quite a few headers in your document, these steps can take a while to perform. You'll also need to perform them for all the footers in the document. (The only caveat is that you must switch to display the footers either before or after step 3.) If you have to routinely do this with many documents, then the process becomes even more tedious.

The solution for the tedium is to create a macro that will do the necessary changes for you. Consider the following macro:

Sub MakeSame()
    Dim J As Integer
    Dim K As Integer

    If ActiveDocument.Sections.Count > 2 Then
        For J = 3 To ActiveDocument.Sections.Count
            For K = 1 To ActiveDocument.Sections(J).Headers.Count
                ActiveDocument.Sections(J).Headers(K).LinkToPrevious = True
            Next K
            For K = 1 To ActiveDocument.Sections(J).Footers.Count
                ActiveDocument.Sections(J).Footers(K).LinkToPrevious = True
            Next K
        Next J
    End If
End Sub

The macro checks to see if there are at least three sections in the document. If there are, then it begins to make changes starting with the third section. It steps through all the headers and footers for each section, making sure that they are set to be the same as the previous section.

Once you are done running this macro, just display the Header and Footer dialog box for the second section and make sure the header and footer are set the way you want.

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


Take Control! Experienced users know that styles can make the difference between a plain document and a masterful one. This is the real power behind Word, and the key to that power can be found in WordTips: Styles and Templates.

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.)