Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 "PsyberFox" wrote in message ... | 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 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I thought as much.... wasn't really up to doing the macro-thing, but thank
you kindly! "Jim Rech" wrote: 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 "PsyberFox" wrote in message ... | 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Page numbering for one page | Excel Discussion (Misc queries) | |||
start page numbering from page 2 in excel | Excel Discussion (Misc queries) | |||
Page numbering | Excel Discussion (Misc queries) | |||
Format page numbering to be Page 1 of X | Excel Discussion (Misc queries) | |||
Page Numbering | Excel Discussion (Misc queries) |