Print page numbers only on page

  • Thread starter Thread starter Mel
  • Start date Start date
M

Mel

I printed a forty seven page document and forgot to number the pages. Is
there a way I can put the forty seven pages back in the printer and print
sequential page numbers only on each page from page one through forty seven?
 
Start with a new blank document and then use the header or footer to locate
the page number where you want it, then press Ctrl+Enter 46 times, then
print that "document" over the other one.

Instead of the Ctrl+Enter 46 times, you could just run the following macro

Dim myrange As Range, i As Long
For i = 1 To 46
Set myrange = ActiveDocument.Range
myrange.Collapse wdCollapseEnd
myrange.InsertBreak
Next i


--
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.

Hope this helps
Doug Robbins - Word MVP
 
Back
Top