ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   How do I print a one page spreadsheet multiple time, each with i. (https://www.excelbanter.com/excel-worksheet-functions/252144-how-do-i-print-one-page-spreadsheet-multiple-time-each-i.html)

oshrat

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

Malik[_2_]

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


Jacob Skaria

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


Ron de Bruin

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



All times are GMT +1. The time now is 10:21 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com