Excel printing

Joel Becker

New Member
Joined
Dec 15, 2010
Messages
6
in Excel 2010 is there a way to print with one print command pages with different print areas, ie print page 1 landscape range through column O and page 2 portrait through column H?
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
if you know the exact ranges

Code:
sheets("Sheet1").range("A1:H7").printout
sheets("Sheet2").range("C1:H10").printout

change as per needed
 
Upvote 0
if you had variable ranges then something like (with continuos data)

Code:
dim counta as long
dim countb as long
'add more, 1 per sheet needed
 
 
counta = sheets("Sheet1").Range("A2").CurrentRegion.Rows.count
countb = sheets("Sheet2").Range("A2").CurrentRegion.Rows.count
 
sheets("Sheet1").range("A2:O" & counta).printout
sheets("Sheet2").range("A2:O" & countb).printout
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,850
Members
452,948
Latest member
UsmanAli786

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