Written by Allen Wyatt (last updated February 3, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365
Stephanie has a document comprising two sections. The first section consists of a single title page. The second section is quite long, and at several points in the document Stephanie has text that states "...see information in the preceding X pages." She is looking for a field to use in the place of "X" so that the text always shows the number of pages prior to the page on which the field appears, without counting the title page (first section).
If the page numbering is continuous, you could just use a nested field like this:
{ = { page } - 2 }
This would give the current page in the document, minus one for the current page and minus one for the title page that you don't want to count. If page numbering restarts in section 2, you would use the following nested field instead:
{ = { page } - 1 }
If your document becomes more complex by adding additional sections (more than the two described), and each section could re-start page numbering, then the job is more difficult. The solution is to add a field that looks like this somewhere in each section:
{ sectionpages }
Select the field and format it as hidden text so that it won't show up in the final document. In addition, select the field and give it a bookmark name. These bookmarks should have names such as "section1count," "section2count," etc.
With the fields bookmarked, you now have a way to know how many pages are in each of your sections. This means that you can build the "preceding X pages" field in the following manner:
{ = { page } — 1 + { ref section1count } + { ref section2count } }
Remember that you can enter empty field braces into a document by pressing Ctrl+F9.
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (10604) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365. You can find a version of this tip for the older menu interface of Word here: Field Reference to Number of Prior Pages.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
When you create a list using the SEQ field, you may want to create a cross-reference to an item in that field. You can do ...
Discover MoreWant to copy a field code and paste it in some other Windows program? This can be trickier than it sounds. Here's the ...
Discover MoreWant to insert a dynamic cross-reference to a particular page number? It's easy to do following the steps in this tip.
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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