Word 2010 Number of pages without first page

microsoft-word-2010page-numbers

I show the number of pages as 1 / 4, with 4 being the total number of pages. But I do not want to count the first page.

Important: I know how to do it for the current page number (Starting at ..), I mean the total number of pages.

So if the document has one cover page + 3 pages, I want to show it as 1/3, 2/3 …, not as 1/4.

Best Answer

The solution is to use a formula:

{ = { NUMPAGES } - 1 }

Purists can even write (Examples) as below and use StartingNumber

Page { PAGE } of { = (StartingNumber - 1) + { NUMPAGES } } 

In order to avoid the syntax error:

I would say that you are typing litterally the "{NumPages}" part. You need to use CTRL+F9 to enter the both field brace pairs { { } } and then type in the text { = { NumPages } - 1 } Then you need to press F9 after you enter it to make it active.

Related Question