![]() |
|
|
|
#1
|
|||
|
|||
|
This is my first post. I'm hoping yall can help me find an answer. I have a document of roughly 40 pages. This document's page orientations need to go back and forth from portrait to landscape. Unfortunately, when I change one page's orientation, they all change. Is there any way to have a document that goes from Portrait to Landscape many times? |
|
#2
|
|||
|
|||
|
I believe you can set a range of pages, then code something like:
Code:
With thisDoc.Range.PageSetup
.Orientation = wdOrientLandscape
End With
changing the Orientation as you redefine the range. |
|
|
|