Page numbering on one page

P

PsyberFox

OK... so I've got one page and need to print, let's say 10 copies... how do I
let it print a "page number" of 1 through 10? If I add a header, it prints
the same page number 10 times, so I'm a bit stuck.

Thx
 
J

Jim Rech

OK. No built-in way to do this, as far as I know, so you have to use a
macro.

Sub PrintTenTimesIncrementingPgNum()
Dim Counter As Integer
For Counter = 1 To 10
ActiveSheet.PageSetup.FirstPageNumber = Counter
ActiveSheet.PrintOut
Next
End Sub


--
Jim
| OK... so I've got one page and need to print, let's say 10 copies... how
do I
| let it print a "page number" of 1 through 10? If I add a header, it prints
| the same page number 10 times, so I'm a bit stuck.
|
| Thx
 
P

PsyberFox

I thought as much.... wasn't really up to doing the macro-thing, but thank
you kindly!
 

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

Top