When you reuse a Word template for documents like reports, invoices, or proposals, page numbering often carries over from the previous use. This means the first page of your new document might start at page 5 or page 12 instead of page 1. The issue occurs because the template stores the last used page number in its fields, and Word does not reset numbering automatically. This article explains how to configure a Word template so that page numbering always starts at 1 when you create a new document from it.
Key Takeaways: Force New Page Numbering in Word Templates
- Insert > Page Number > Format Page Numbers > Start at 1: Forces the current section to begin numbering at 1 every time the template is used.
- Ctrl+F9 to insert a SET field in the document header: Resets the page number counter to 1 when the document is opened, overriding any stored value.
- File > Save As > Word Template (.dotx): Saves the configured template so all future documents inherit the forced numbering behavior.
Why Word Templates Retain Page Numbering and How to Reset It
Word templates store static content and field codes. When you insert page numbers via the Insert > Page Number menu, Word uses the PAGE field. This field calculates the current page number based on the document’s pagination. However, if you previously set a starting number other than 1, or if the template was saved after scrolling to a later page, Word may retain that number in the field’s properties. The PAGE field itself does not auto-reset; it relies on the section’s starting number setting. The solution is to explicitly set the starting number to 1 in the section properties and optionally use a SET field to force a reset each time the document is opened.
Steps to Set a Word Template to Force New Page Numbering
Follow these steps to create or modify a Word template so that every new document starts page numbering at 1.
- Open the template or create a new one
Open an existing .dotx or .dotm file. To create a new template, go to File > New > Blank document, then design your content and headers. Do not add any filler text yet. - Insert page numbers in the header or footer
Double-click the header or footer area where you want page numbers. Click Insert > Page Number > choose a position, such as Bottom of Page > Plain Number 2. Word inserts a PAGE field. - Set the starting number to 1
While still in the header or footer, click Insert > Page Number > Format Page Numbers. In the Page Number Format dialog, under Page numbering, select Start at and type 1. Click OK. - Force a reset with a SET field in the document body
Press Ctrl+F9 to insert an empty field code. TypeSET PageNumber 1between the braces. Press F9 to update the field. This field runs when the document opens and sets the page number counter to 1. Place this field at the very top of the document body, before any other content. - Remove any existing content
Delete any placeholder text or sample content. The template should contain only the fields and formatting you want to reuse. If you keep sample text, the SET field may not trigger correctly. - Save the file as a Word template
Go to File > Save As. Choose a location. In the Save as type dropdown, select Word Template (dotx) or Word Macro-Enabled Template (dotm) if you use macros. Name the file and click Save. - Test the template
Close Word. Double-click the .dotx file to create a new document. Check that page numbering starts at 1 on the first page. Scroll to page 2 and verify it shows page 2.
What to Do If Page Numbering Still Does Not Reset
Page number still starts at a number other than 1
The SET field may not be updating. Ensure the field code is exactly SET PageNumber 1 inside curly braces created with Ctrl+F9. Do not type the braces manually. Also confirm the field is placed in the document body, not inside the header or footer. After opening the document, press Ctrl+A then F9 to update all fields.
Multiple sections in the template cause numbering to continue
If your template uses section breaks, each section can have its own page numbering. Select each section’s header or footer, open Format Page Numbers, and set Start at to 1. The SET field only affects the first section; you must repeat the field code in each section’s body if you want all sections to start at 1.
Numbering resets to 1 only after the first save
Some users report that the SET field works only after the document is saved and reopened. To fix this, add a Document_New macro in the template’s ThisDocument module. The macro runs when a new document is created. Use this VBA code:
Private Sub Document_New()
ActiveDocument.Fields.Update
End Sub
Save the template as a macro-enabled .dotm file. When you create a new document, the macro updates all fields, forcing the page number to reset.
Word Template Methods for Forcing Page Numbering: Comparison
| Item | Format Page Numbers Dialog | SET Field in Document Body | VBA Macro in Template |
|---|---|---|---|
| Ease of setup | Simple, no coding | Moderate, requires field code knowledge | Advanced, requires VBA editor |
| Reliability | Works if section links are correct | May require manual field update | Automatically updates on document creation |
| Works across multiple sections | Must set each section individually | Must insert field in each section body | Can loop through all sections with code |
| File type required | .dotx or .dotm | .dotx or .dotm | .dotm only |
| Risk of user error | Low | Medium if field code is mistyped | Low if macro is tested |
To force new page numbering on each use of a Word template, you now have three reliable methods. Start with the Format Page Numbers dialog for a quick fix. Add a SET field if you need more consistent behavior across different Word versions. Use a VBA macro for the most automated solution, especially in shared template environments. Always test your template by creating a new document and checking page 1 and page 2 numbering.