Progressive numbering of Excel worksheets

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

Guest

Is it possible to print multiple copies of an Excel worksheet with progressive
numbers
 
This macro might help

Sub Macro1()
Application.ScreenUpdating = False

For j = 1 To 5
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Range("E20") = Range("E20") + 1
Next j

Application.ScreenUpdating = True
End Sub

best wishes
 
This macro might help

Sub Macro1()
Application.ScreenUpdating = False

For j = 1 To 5
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Range("E20") = Range("E20") + 1
Next j

Application.ScreenUpdating = True
End Sub

best wishes
 

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