Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365. 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: Automatic Page Numbers across Multiple Documents.

Automatic Page Numbers across Multiple Documents

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


3

Abulkalam has multiple documents that he wants to have continuous page numbering from one document to the other. If one document has an added or deleted page, then he has to manually change the page numbering in the following documents. He knows he could use master documents and subdocuments, but that can of worms is one he doesn't want to open. Abulkalam wonders if there is a way that he could avoid the need to manually change page numbers all the time.

There is no way to do this automatically in Word. You can try a workaround, by using fields within your documents, but that gets a bit complex. As an example, let's suppose that you have three documents, each representing chapters in a larger book. Chap1.docx has 15 pages, Chap2.docx has 11 pages, and Chap3.docx has 17 pages. Start by opening Chap1.docx and follow these general steps:

  1. Somewhere on the second-to-last page of the document (page 14, in this case) insert a continuous section break.
  2. Within the footer of the document's first section, press Ctrl+F9. This inserts a pair of field braces into which you should type the word PAGE.
  3. Press F9 to collapse the field you just created. This represents the page number of the current page.
  4. On the Design tab of the ribbon (it should be visible because you are working in the footer), click the Next Section tool. This moves you to the footer in the last section of the document, which is after the section break you inserted in step 1.
  5. Click the Link to Previous tool so that it is not selected. This "unlinks" the footer in the last section from the footer you previously created.
  6. Delete the PAGE field in the footer. (Don't worry; the field still exists in previous pages because you unlinked this section's footer from the previous section's footer.)
  7. Press Ctrl+F9 to insert a pair of field braces into which you should type the word NUMPAGES.
  8. Press F9 to collapse the field you just created.
  9. Select the field you just created and press Shift+Ctrl+F5. Word displays the Bookmark dialog box. (See Figure 1.)
  10. Figure 1. The Bookmark dialog box.

  11. Type a simple bookmark name, such as bk. When you click Add, the bookmark is created.
  12. Close the Bookmark dialog box.
  13. Click the Close Header and Footer tool (on the Design tab of the ribbon) and save your document.

Now, you need to follow the same general steps in the Chap2.docx document, except that the fields you use need to be a bit more complex. Assuming that the document files are stored in the directory at C:\MyDocs\Example, you would use the following compound field in step 2:

{ ={ INCLUDETEXT "\\MyDocs\\Example\\Chap1.docx" bk \! } + { PAGE } }

What this does is use the INCLUDETEXT field to grab whatever is in the bookmark named bk from Chap1.docx (which is the total number of pages in that document) and then add the current page number to that value. Thus, numbering continues from whatever the page count was in Chap1.docx.

The field that you should use in step 7 is similarly complex:

{ ={ INCLUDETEXT "\\MyDocs\\Example\\Chap1.docx" bk \! } + { NUMPAGES } }

That's it for your Chap2.docx file; the page numbering should work just fine. In the Chap3.docx file you follow the same steps, again, using the same complex fields that you did in the Chap2.docx file. The only difference is that you reference Chap2.docx in the fields, in this manner:

{ ={ INCLUDETEXT "\\MyDocs\\Example\\Chap2.docx" bk \! } + { PAGE } }
{ ={ INCLUDETEXT "\\MyDocs\\Example\\Chap2.docx" bk \! } + { NUMPAGES } }

Note that whenever you add or delete pages from any of the documents, the page numbers within them are updated automatically when the fields are updated. (Fields are updated when you manually update them or when you choose to print or use print preview.)

There are, of course, a few "gotchas" you need to keep in mind when using this approach. First, if you delete the continuous section break (step 1) from any of the files, you will really mess things up. Second, if you move the documents to a different folder (or send them to another person who uses a different folder), then the fields won't work at all. Third, if you use multiple sections in your documents, then this approach can get quite a bit more complex as you attempt to compensate for those sections.

Another approach is to use a macro to handle the page numbering. The macro could step through all your files and set the starting page numbers to be whatever is appropriate for those files. The following is an example of such a macro:

Sub PageNumberReset()
    Dim pgNo As Long
    Dim n As Long
    Dim pathName As String
    Dim fileNames
    Dim thisFile As String
    Dim aRange As Range

    ' Specify the path to the document files
    pathName = "C:\MyDocs\Example\"
    ' Create an array holding the document file names, in sequence
    fileNames = Array("Chap1.docx", "Chap2.docx", "Chap3.docx")

    pgNo = 0
    For n = 0 To UBound(fileNames)
        thisFile = pathName & fileNames(n)
        Application.Documents.Open (thisFile)
        ActiveDocument.Sections(1).Headers(1).PageNumbers.StartingNumber = pgNo + 1
        Set aRange = ActiveDocument.Range
        aRange.Collapse Direction:=wdCollapseEnd
        aRange.Select
        pgNo = Selection.Information(wdActiveEndAdjustedPageNumber)
        Application.Documents(thisFile).Close Savechanges:=wdSaveChanges
    Next n
End Sub

To use the macro, you only have to specify the directory in which the documents are stored and put the document file names into the fileNames array. The macro sets the first document to start at page 1 and each subsequent document to start at one more than the highest page number in the previous document. If you change the number of pages in any of the documents, you'll need to rerun the macro.

If you don't want to use fields or macros to do the page numbering, you could rethink your document structure and combine all the different documents into a single document. You could also get away from Word entirely and do your page layout in desktop publishing program, such as InDesign, which is specialized to handle multiple-file page numbering.

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 (11572) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365. You can find a version of this tip for the older menu interface of Word here: Automatic Page Numbers across Multiple Documents.

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

Adding Information after the Endnotes

Endnotes appear at the end of the document, right? Not always, as Word provides a way that you can actually add as much ...

Discover More

Highlighting Every Thousandth Character

Not satisfied with the detail provided by the Word Count feature in Word? Perhaps you want to actually know where every ...

Discover More

Independent Radio Buttons

Radio buttons are great for some data collection purposes. They may not be that great for some purposes, however, for the ...

Discover More

The First and Last Word on Word! Bestselling For Dummies author Dan Gookin puts his usual fun and friendly candor back to work to show you how to navigate Word 2013. Spend more time working and less time trying to figure it all out! Check out Word 2013 For Dummies today!

More WordTips (ribbon)

Adding Page Numbers

Ever want to add page numbers to your document? Word allows you to control many aspects of page numbering. Here's how to ...

Discover More

An Exact Number of Lines Per Page

For some purposes, you may need to fit an exact number of lines on a printed page. This may be easier said than done, as ...

Discover More

Margin Notes in Word

Some types of documents rely upon margin notes to the left or right of your main text. Getting these to appear in Word ...

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 two less than 9?

2022-07-27 05:05:05

Kiwerry

@ Claire and V.Enteaux:
Did you amend the lines

' Specify the path to the document files
pathName = "C:\MyDocs\Example\"
' Create an array holding the document file names, in sequence
fileNames = Array("Chap1.docx", "Chap2.docx", "Chap3.docx")

so that the path to your document replaced ' C:\MyDocs\Example\ '
and that the file name of each of your documents replaced the ' Chap?.docx ' entries within the array brackets, adding or removing names as necessary and putting them in the correct order??


2021-05-11 23:46:58

V. Enteux

@Claire I ran into the same problem. Did you ever figure it out?


2021-03-24 07:56:31

Claire

Thanks for explaining how to do something so commonly used yet, at the same time, not intuitive at all. I tried to use the macro, but encountered a problem at line "Application.Documents(thisFile).Close Savechanges:=wdSaveChanges".

The error is 4160, wrong file name.

I know next to nothing about VBA, but I tried to use references to understand the different commands and could not find anything weird. Is the code wrong, is it a bug or is it just me?

Also, if it's not an inconvenience, could you please point me in the right direction to include a file dialog to select the files (or the folder containing the files, if the former is not possible), so that I don't need to type them manually? Everything I find is for Excel, and it doesn't seem to work.

Thank you.


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.