Sometimes I receive Word documents that have a layout other than the one I prefer. When such a document is open on my screen, I can put it into the format I prefer by clicking on the "One Page" button and then click on the "100%" button. When I record a macro following those same two steps, the result is not the same. The macro below causes the layout to go to a single page, but the Zoom is not 100%. What am I doing wrong? Is Word recording an incorrect command?
Sub OnePage100()
'
' OnePage100 Macro
'
ActiveWindow.ActivePane.View.Zoom.PageFit = wdPageFitFullPage
ActiveWindow.ActivePane.View.Zoom.Percentage = 100
End Sub