Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
BMT
 
Posts: n/a
Default consecutive page numbers of the same page

how do i set up excel to print multiple copies of the same sheet but have
consecutive page numbes?
  #2   Report Post  
Posted to microsoft.public.excel.misc
Nick B
 
Posts: n/a
Default consecutive page numbers of the same page

Guess you could use code that keeps updating the footer with a number and
printing out the page.

Assuming only one page for each sheet, could use something like:
Sub PrintOut()
Dim i As Long
Const lngNumberofPrints As Long = 3

For i = 1 To lngNumberofPrints
ActiveSheet.PageSetup.CenterFooter = i
ActiveSheet.PrintOut copies:=1
Next
End Sub

"BMT" wrote:

how do i set up excel to print multiple copies of the same sheet but have
consecutive page numbes?

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
IN EXCEL, TURN OFF THE BIG GRAY NUMBERS IN THE PAGE BREAK PREVIEW JAGMWF Excel Discussion (Misc queries) 4 January 5th 06 01:40 PM
How do I change format of page numbers to letters in Excel? DonnaGoof Excel Discussion (Misc queries) 2 November 15th 05 07:35 PM
how to add consecutive positive numbers shreen_farhad Excel Discussion (Misc queries) 1 October 2nd 05 07:51 PM
generate consecutive numbers Mark New Users to Excel 6 March 15th 05 06:45 PM
How to remove page numbers from the display? Dale Bedford Excel Discussion (Misc queries) 3 March 14th 05 03:31 PM


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

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

About Us

"It's about Microsoft Excel"