Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, 2016, 2019, and 2021. 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: Quickly Formatting Footers in Documents with Many Sections.
Written by Allen Wyatt (last updated November 1, 2025)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021
Jake 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:
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 edit the header or footer for the second section and make sure it is set the way you want.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (7541) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and 2021. You can find a version of this tip for the older menu interface of Word here: Quickly Formatting Footers in Documents with Many Sections.
Discover the Power of Microsoft Office This beginner-friendly guide reveals the expert tips and strategies you need to skyrocket your productivity and use Office 365 like a pro. Mastering software like Word, Excel, and PowerPoint is essential to be more efficient and advance your career. Simple lessons guide you through every step, providing the knowledge you need to get started. Check out Microsoft Office 365 For Beginners today!
Editing what is in your page header or footer is fairly easy, and you can use the same editing techniques you already ...
Discover MoreDon't want a header or footer to appear on just a portion of your document? It's easy to do when you understand that ...
Discover MoreTrying to figure out how you want Word to handle footers in your document can be a challenge, primarily because Word ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2025-11-04 02:02:27
Tomek
Another approach could be to find section breaks and replace them with page breaks starting from the second page. Then the rest of the document would become a single section and headers/footers would be the same, unless set to different for odd and even pages.
This should work if there is no other reason for section breaks, like varying page sizes, orientations, margins, or columns.
A problem may occur if any of the pages have continuous section breaks within some of the pages. Such pages would be split into two. The search for section breaks does not distinguish between continuous and new-page types.
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.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments