Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default How do I print a one page spreadsheet multiple time, each with i.

How do I print a one page spreadsheet multiple time, each with its own page
number
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 25
Default How do I print a one page spreadsheet multiple time, each with i.

You might want to try this. I used the preview feature. You can use print.

There are may be techniques to setup one print call with new page numbers.
Option Explicit

Public Sub Printsheet()
Dim Counter As Integer
For Counter = 1 To 5
Call PrintSetup(Counter)
ActiveWindow.SelectedSheets.PrintPreview
Next Counter
End Sub

Sub PrintSetup(PageNumber As Integer)
With ActiveSheet.PageSetup
.PrintTitleRows = ""
.PrintTitleColumns = ""
End With
ActiveSheet.PageSetup.PrintArea = ""
With ActiveSheet.PageSetup
.LeftFooter = PageNumber
End With
End Sub



--
Malik


"oshrat" wrote:

How do I print a one page spreadsheet multiple time, each with its own page
number

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default How do I print a one page spreadsheet multiple time, each with i.

You can try out the below macro. If you are new to macros..

--Set the Security level to low/medium in (Tools|Macro|Security).
--From workbook launch VBE using short-key Alt+F11.
--From menu 'Insert' a module and paste the below code.
--Get back to Workbook.
--Run macro from Tools|Macro|Run <selected macro()


Sub PrintMultiplewithFooterChange()
Dim intTemp As Integer
For intTemp = 1 To 50
ActiveSheet.PageSetup.CenterFooter = "Page " & intTemp & " of 50"
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Next intTemp
End Sub


--
Jacob


"oshrat" wrote:

How do I print a one page spreadsheet multiple time, each with its own page
number

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,123
Default How do I print a one page spreadsheet multiple time, each with i.

See
http://www.rondebruin.nl/print.htm#same


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"oshrat" wrote in message ...
How do I print a one page spreadsheet multiple time, each with its own page
number

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
Can print just 1 page from a 2 page of excel spreadsheet Ellie Augur New Users to Excel 1 August 6th 09 04:40 PM
Print multiple copies of a spreadsheet on one page JBTjr Excel Discussion (Misc queries) 1 March 3rd 09 10:32 PM
HOW DO I PRINT A SEVEN PAGE SPREADSHEET? [email protected] Setting up and Configuration of Excel 1 February 25th 09 08:01 PM
How do I print a one page spreadsheet multiple time, each with its own page number? lhsallwasser Excel Discussion (Misc queries) 4 August 17th 05 03:00 PM
PRINT SPREADSHEET ON 1 PAGE LEGIBLY [email protected] Excel Worksheet Functions 0 March 4th 05 08:39 PM


All times are GMT +1. The time now is 08:36 PM.

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"