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
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.