Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 26
Default Page numbering on one page

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 533
Default Page numbering on one page

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 26
Default Page numbering on one page

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Page numbering for one page PsyberFox Excel Discussion (Misc queries) 1 January 10th 08 04:19 PM
start page numbering from page 2 in excel swa Excel Discussion (Misc queries) 2 July 25th 07 04:53 PM
Page numbering Guilherme Soares Excel Discussion (Misc queries) 0 December 5th 06 04:40 PM
Format page numbering to be Page 1 of X Joan at UCSF Excel Discussion (Misc queries) 2 April 6th 06 03:31 AM
Page Numbering Silver Excel Discussion (Misc queries) 1 January 13th 05 05:55 PM


All times are GMT +1. The time now is 02:17 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"