Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Page Layout / September 2004

Tip: Looking for answers? Try searching our database.

Consecutive page numbers

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Babyjsmom - 30 Sep 2004 16:43 GMT
Is there any way to have a one page document print out with consecutive page
numbers on it?  Example: as it prints the same document over and over again
100 times each one has a new page number on it.
Signature

Babyjsmom

Dayo Mitchell - 30 Sep 2004 17:10 GMT
A couple of different ways, both detailed here:

http://word.mvps.org/faqs/macrosvba/NumberDocs.htm
http://word.mvps.org/faqs/MailMerge/NumberCopiesOfDocMMerge.htm

> Is there any way to have a one page document print out with consecutive page
> numbers on it?  Example: as it prints the same document over and over again
> 100 times each one has a new page number on it.
Babyjsmom - 30 Sep 2004 17:21 GMT
Thank you so much, that is exactly what I needed!

> A couple of different ways, both detailed here:
>
[quoted text clipped - 4 lines]
> > numbers on it?  Example: as it prints the same document over and over again
> > 100 times each one has a new page number on it.
Greg - 30 Sep 2004 17:31 GMT
You can use the following macro:

Sub PrintNumberedCopeis()

Dim NumCopies, CopyNumber As String
Dim Counter As Long
Dim rng1 As Range
CopyNumber = Val(InputBox("Enter the starting
number.", "Starting Number", 1))
NumCopies = Val(InputBox("Enter the number of copies that
you want to print", "Print", 1))
With ActiveDocument.Bookmarks
   .Add Name:="CopyNum"
End With
Set rng1 = ActiveDocument.Bookmarks("CopyNum").Range
Counter = 0
While Counter < NumCopies
   rng1.Delete
   rng1.Text = CopyNumber
   ActiveDocument.PrintOut
   CopyNumber = CopyNumber + 1
   Counter = Counter + 1
Wend
With ActiveDocument.Bookmarks
   .Add Name:="CopyNum", Range:=rng1
End With
End Sub

>-----Original Message-----
>Is there any way to have a one page document print out with consecutive page
>numbers on it?  Example: as it prints the same document over and over again
>100 times each one has a new page number on it.

Rate this thread:






 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.