Unlinking All Headers and Footers

Written by Allen Wyatt (last updated February 21, 2026)

1

Dennis has a book in a single Word document. Each of the 23 chapters are in separate sections. Dennis wonders if there is a way he can create different headers or footers for each chapter without the necessity of manually unlinking every section.

When you add a new section, Word automatically links the headers and footers of the new section to the previous section. If you have a large document, such as what Dennis has, that means unlinking 22 headers and 22 footers. If you have different headers and footers on even pages, then that's 44 more links that need to be broken (22 headers and 22 footers). If you create a different header and footer for the first page of each section, that's another 44 links that need to be changed. (Dennis said he has 23 chapters, which is 23 sections, but no unlinking is necessary for the first section. That's why links for only 22 sections need to be broken.)

To break all the links, it is a potential grand total of 132 links that need to be undone. As a manual task, that's formidable. It is much better to use a macro to unlink them all. The following macro steps through each section of the document and unlinks the header, footer, even page header, even page footer, first page header, and first page footer.

Sub UnlinkAllHeadersFooters()
    Dim s As Section

    For Each sec In ActiveDocument.Sections
        s.Headers(wdHeaderFooterPrimary).LinkToPrevious = False
        s.Footers(wdHeaderFooterPrimary).LinkToPrevious = False
        s.Headers(wdHeaderFooterEvenPages).LinkToPrevious = False
        s.Footers(wdHeaderFooterEvenPages).LinkToPrevious = False
        s.Headers(wdHeaderFooterFirstPage).LinkToPrevious = False
        s.Footers(wdHeaderFooterFirstPage).LinkToPrevious = False
    Next
End Sub

To use the macro, just open the document you want to affect and then run it. You'll then need to manually go through each header and footer and set them to what you desire. The macro could be expanded to set them, provided you could define a pattern for how you want the header or footer to appear. Such an enhancement, though, is beyond the scope of this simple tip.

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

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

Copying Tables to a New Document

Tables are a great way to organize information in a document. For some editing needs, you may want to create a new ...

Discover More

Changing a Field Parameter

Fields are a powerful way to add dynamic content to your documents. Some fields rely on the use of parameters to control ...

Discover More

Vertically Aligning Text and an Image

Getting your images and text positioned exactly where you want them can be a challenge. Here are the settings you need to ...

Discover More

Create Custom Apps with VBA! Discover how to extend the capabilities of Office 365 applications with VBA programming. Written in clear terms and understandable language, the book includes systematic tutorials and contains both intermediate and advanced content for experienced VB developers. Designed to be comprehensive, the book addresses not just one Office application, but the entire Office suite. Check out Mastering VBA for Microsoft Office 365 today!

More WordTips (ribbon)

Inserting the Date in a Header or Footer

Need today's date in the header or footer of your document? Here's how to get it there easily.

Discover More

Word Count for Headers and Footers

Getting a word count for an entire document is rather easy. If you want a word count for a special part of a document ...

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

2026-02-21 15:07:52

Jill Sharkey

I create training manuals with lots of sections. Section 2 is unlinked from Section 1 because the cover page has different heades and footers. But the rest of the document has linked sections with different first page and different odd and even pages headers. I use the Styleref field to bring in the chapter headings, except on the first page of each chapter.


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.