|
|
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
|
|
0
|
|
|
|
Reply
|
Utf
|
12/31/2009 3:59:01 AM |
|
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
|
|
0
|
|
|
|
Reply
|
Utf
|
12/31/2009 4:24:01 AM
|
|
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
|
|
0
|
|
|
|
Reply
|
Utf
|
12/31/2009 7:35:01 AM
|
|
See
http://www.rondebruin.nl/print.htm#same
--
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
"oshrat" <oshrat@discussions.microsoft.com> wrote in message news:69419F97-4DFE-4FD4-B346-6D914EE67994@microsoft.com...
> How do I print a one page spreadsheet multiple time, each with its own page
> number
|
|
0
|
|
|
|
Reply
|
Ron
|
12/31/2009 5:37:28 PM
|
|
|
3 Replies
649 Views
(page loaded in 0.156 seconds)
Similiar Articles: 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 ... How do I have a long excel spreadsheet on multiple pages ...How do I print a one page spreadsheet multiple time, each with i ... How do I have a long excel spreadsheet on multiple pages ... How do I print a one page spreadsheet ... how do I print multiple print areas on one page - microsoft.public ...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 ... how do I print ... Cannot print both-sided by selecting multiple worksheets ...How do I print a one page spreadsheet multiple time, each with i ... Cannot print both-sided by selecting multiple worksheets ... How do I print a one page spreadsheet ... How do I fit to 1 page on entire workbook - microsoft.public.excel ...... in one Excel workbook at same time ..... time, each with i ..... print.htm#same ... multiple worksheets ... How do I print a one page spreadsheet multiple time ... How do you apply a print area to an entire workbook - microsoft ...How do I print a one page spreadsheet multiple time, each with i ... How do you apply a print area to an entire workbook - microsoft ..... Fit to one page - microsoft ... How do I get Excel to print in page centre? - microsoft.public ...How do I print a one page spreadsheet multiple time, each with i ... How do I get Excel to print in page centre? - microsoft.public ... How do I fit to 1 page on entire ... How do I print my spreadsheet to show the formulas of a cell ...How do I print my spreadsheet to show the formulas of a cell ... How do I print a one page spreadsheet multiple time, each with i ... How do I print ... how do you do reduce ratios in a spreadsheet - microsoft.public ...how do I print multiple print areas on one page - microsoft.public ... How do I print a one page spreadsheet multiple time, each with i ... How do you apply a print area ... Editing multiple cells at the same time - microsoft.public.excel ...How to move/delete multiple pages at same time in Publisher ... delete ... How do I print a one page spreadsheet multiple time, each with ... How to Delete Multiple cells ... Excel - How Do I Print A One Page Spreadsheet Multiple Time, Each ...How Do I Print A One Page Spreadsheet Multiple Time, Each With Its Own Page Number? - Roy thank you so much for this solution I will try it right... - Free Excel Help Excel - How Do I Print A One Page Spreadsheet Multiple Time, Each ...How Do I Print A One Page Spreadsheet Multiple Time, Each With Its Own Page - Hello I have a one page spreadsheet essentially a template... - Free Excel Help 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 ... [SOLVED] How do I print a one page spreadsheet multiple time, each ...Forum; Microsoft Office Application Help - Excel Help forum; Excel General [SOLVED] How do I print a one page spreadsheet multiple time, each with its own page How to Print Multiple Excel Spreadsheets on One Page | eHow.com... one page at a time. Time and paper can be saved, however, by printing multiple Excel spreadsheets on one... ... the top of each page.... How to Print an Excel Spreadsheet ... 7/22/2012 7:56:16 AM
|
|
|
|
|
|
|
|
|