Fitting a report to one page wide with graphics

jerH

Board Regular
Joined
Dec 3, 2008
Messages
168
A report that I'm building has a graphic in the top right corner.

The user wants the final output to be printable to one page wide.

I have the following code at the end of the report production

Code:
    'adjust column widths
    ws.columns("A:S").EntireColumn.AutoFit   
    
    With ws.PageSetup
        .Orientation = xlLandscape
        .FitToPagesWide = 1
        .FitToPagesTall = False
    End With

The issue is that since the graphic isn't actually "in" a cell, it doesn't seem to be considered in the "fit all columns on one page" adjustment.

So if a particular report happens to have some wide data, the autofit leads to some wide columns and the graphic gets pushed to the right. In page layout or pagebreak view you can then see that the last column of the report will always be on the page, but the graphic is often split.

Any ideas on how to ensure the page is scaled to keep the graphic on as well?
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.

Forum statistics

Threads
1,215,754
Messages
6,126,680
Members
449,328
Latest member
easperhe29

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