Forum Discussion
wordaholic
Feb 21, 2023Copper Contributor
Different sets of page numbers in headers and footers
Hi, this is my first activity on this forum. Recently, I had to do a work that involved putting page numbers on top of each page of word doc and at the bottom of every page I had to put in "continu...
Feb 21, 2023
wordaholic In the Header, use a regular { PAGE } and in the Footer, use
Continued on Page { = { PAGE } + 1 }
or, to prevent that appearing on the last page, use
{ IF { PAGE } < { NUMPAGES } "Continued on Page { = { PAGE } + 1 }" }
You must used CTRL+F9 to insert each pair of field delimiters and ALT+F9 to toggle off their display.
- wordaholicFeb 22, 2023Copper ContributorYes, it worked. Thanks for the solution. Much appreciated.