Multiple Sheet Setup

Medino

New Member
Joined
Sep 25, 2002
Messages
2
What is the best way to do multiple sheet setups (150 sheets) so that each sheet will only print on 1 page? Can I copy the format from Sheet 1 which is correct, or is there a better/faster way? I have figured out a way to do it but it takes forever. Any advice would be appreciated.
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Select one sheet. Then hold down CTRL and select all the other sheets that you require, then File/Page Setup.

Or, click on the leftmost sheet, move to the rightmost sheet press SHIFT and click on the rightmost sheet to select the lot.
This message was edited by VoG™ on 2002-09-26 15:32
 
Upvote 0
The fastest way to print is to set the "Print Area" and the "Page SetUp" for each sheet from the menu one active sheet after another. Excel will remember each sheets print set up and formatting. Then use the macro below. This way of printing is the fastest way. JSW

Sub myPrintAll()
'Each sheet gets its own two print lines.
'Add your sheet names for the names below!

Sheets("Input Form").Select
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True

Sheets("Related Form").Select
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True

Sheets("Factor Sheet").Select
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True

'Go back to this sheet after printing!
Sheets("Input Form").Range("A1").Select
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,433
Members
448,897
Latest member
ksjohnson1970

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