Can I make Word 2000 place page numbers on an existing non Word do

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have several documents(PDF) files already printed of varying number of
pages. Can I run those existing printed pages back through the printer and
have Word number the pages such as " 1 of 728" "2 of 728" ect.
 
If you create a plain document and add insert 1 fewer page breaks than the
number of pages in the document - the following macro will do that

Sub InstBreaks()
Dim iPage As Integer
iPage = InputBox("How Many Pages in the document?", "Add Pages")
For x = 1 To iPage - 1
Selection.InsertBreak Type:=wdPageBreak
Next x
End Sub

You can add a the {Page} of {NumPages} to the footer in such a position
that it will not interfere with the text in your PDFs, then print the
document on your printouts

Repeat for each PDF document.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top