Print Multiple Copies of The same Sheet

Triggman

New Member
Joined
Mar 20, 2006
Messages
19
I have a workbook with one sheet. I need to print out 25. copies with each copy having a sequential number in a certain cell and then save the file with the last number
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
You can set up a loop to run from 1 to 25.

Assumption:
* Worksheet name is "MyData"
* Cell to write sequence number is Z1
* You have selected the Print Area A1:Z50

VBA Code:
Dim RowNo as Long

For RowNo = 1 to 25
     Sheets("MyData").Range("Z1") = RowNo
     Sheets("MyData").PrintOut
Next
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,262
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top