FitToPagesWide

  • Thread starter Thread starter Mike H.
  • Start date Start date
M

Mike H.

Sometimes I issue the command:

With ActiveSheet.PageSetup
.FitToPagesWide = 1
....etc...
end with

And the Pages Wide is more than 1. Any Ideas why this happens?
 
Make sure you include the .zoom = false:

.Zoom = False
.FitToPagesWide = 1
.FitToPagesTall = 1
 
        .Zoom = False
        .FitToPagesWide = 1
        .FitToPagesTall = False

If you make the pages tall false, it will keep it to 1 page wide
regardless of the number of pages tall.

Cliff Edwards
 

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