is it possible to progresively number multiple copies

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to print multiple copies of a worksheet with a progressive
page number on each copy
 
If you have the page number in a worksheet cell, you could provide a macro that
increments that cell and prints the page:

Option Explicit
sub testme()
dim iCtr as long
with worksheets("sheet1")
for iCtr = 1 to 10
.range("a1").value = ictr
.printout preview:=true
next ictr
end with
end sub

I used A1 and did a print preview to save paper.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm
 
Or without a page number in a cell.

Sub PrintCopies()
Dim i As Long
For i = 1 To 3
With ActiveSheet
.PageSetup.LeftFooter = "Page " & i
.PrintOut preview:=True
'.Printout
End With
Next
End Sub


Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top