View One Page @ 100% in Word 2010

Anonymous
2010-09-07T16:20:42+00:00

I want to view one page at a time at 100% in word 2010 in print layout when creating a document, preferably in the middle of the screen - not all the way to left. It seems word 2010 only lets you view one page if it is at zoom 78% and if you click 100% it shows two pages.

Microsoft 365 and Office | Word | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
Anonymous
2012-01-17T20:10:17+00:00

I have to admit I am confused why there is confusion in that thread. I have a larger monitor at home, and with Word 2007 (at home) my Print Layout never reverts to a Mutli-Page View. In Word 2010 (at work) the default is to set the screen to a mutli-page view if the pages can fit side by side.

Word 2010 is the first time I have seen Word force the mutli-page view in that way. There is a workaround, so that any MVP confused by the question can see what is being requested

To see how things have always worked for me with Word, and to workaround the mentioned issue:

  • Go to the View ribbon
  • Set your Print Layout view to whatever Zoom level you want
  • Click on Web Layout
  • Click on Print Layout

The screen will now show one page at whatever zoom level you wish. That is exactly how Word has always functioned for me, and since it can be set in that manner I am going to go out on a limb and call this 'feature' a bug in the way multi-page view is working. This even works to fix the 'aligned to the left' issue some people mention.

The VBA macro for AutoOpen/AutoNew (in normal.dotm) to change the page display to 'fix' the issue is easy, but AutoExec causes an error 4248: "This command is not available because no document is open":

Sub AutoOpen()

ActiveWindow.View.Type = wdWebView

If ActiveWindow.View.SplitSpecial = wdPaneNone Then

ActiveWindow.ActivePane.View.Type = wdPrintView

Else

ActiveWindow.View.Type = wdPrintView

End If

End Sub

Sub AutoNew()

ActiveWindow.View.Type = wdWebView

If ActiveWindow.View.SplitSpecial = wdPaneNone Then

ActiveWindow.ActivePane.View.Type = wdPrintView

Else

ActiveWindow.View.Type = wdPrintView

End If

End Sub

Was this answer helpful?

100+ people found this answer helpful.
0 comments No comments
Answer accepted by question author
Anonymous
2012-01-25T01:52:33+00:00

I figured out a way!

Open WORD

Open the navigation pane and place on the left side of the window -

Go to View

Zoom at 100% -- a single document will be in the center of the window at 100%!

It will remain so for all new documents

Was this answer helpful?

70+ people found this answer helpful.
0 comments No comments
Answer accepted by question author
Anonymous
2010-09-07T17:11:36+00:00

There's been a detailed discussion on this point in the forum over the past week:

http://social.answers.microsoft.com/Forums/en-US/wordcreate/thread/c216b55d-6bab-4605-9990-83fa91dbd937

Personally, I can't think of anything to add to the on-topic observations presented there. I believe a macro solution is the only way to achieve what you ask if you're not willing to change the window size of the Word application or your screen resolution, as has been suggested there.


Cindy Meister, VSTO/Word MVP

Was this answer helpful?

0 comments No comments

54 additional answers

Sort by: Newest
  1. Anonymous
    2013-10-05T19:32:25+00:00

    I have to admit I am confused why there is confusion in that thread. I have a larger monitor at home, and with Word 2007 (at home) my Print Layout never reverts to a Mutli-Page View. In Word 2010 (at work) the default is to set the screen to a mutli-page view if the pages can fit side by side.

    Word 2010 is the first time I have seen Word force the mutli-page view in that way. There is a workaround, so that any MVP confused by the question can see what is being requested

    To see how things have always worked for me with Word, and to workaround the mentioned issue:

    • Go to the View ribbon
    • Set your Print Layout view to whatever Zoom level you want
    • Click on Web Layout
    • Click on Print Layout

    The screen will now show one page at whatever zoom level you wish. That is exactly how Word has always functioned for me, and since it can be set in that manner I am going to go out on a limb and call this 'feature' a bug in the way multi-page view is working. This even works to fix the 'aligned to the left' issue some people mention.

    The VBA macro for AutoOpen/AutoNew (in normal.dotm) to change the page display to 'fix' the issue is easy, but AutoExec causes an error 4248: "This command is not available because no document is open":

    Sub AutoOpen()

    ActiveWindow.View.Type = wdWebView

    If ActiveWindow.View.SplitSpecial = wdPaneNone Then

    ActiveWindow.ActivePane.View.Type = wdPrintView

    Else

    ActiveWindow.View.Type = wdPrintView

    End If

    End Sub

    Sub AutoNew()

    ActiveWindow.View.Type = wdWebView

    If ActiveWindow.View.SplitSpecial = wdPaneNone Then

    ActiveWindow.ActivePane.View.Type = wdPrintView

    Else

    ActiveWindow.View.Type = wdPrintView

    End If

    End Sub

    I'm having the same problem and have tried the print layout / web layout / print layout workaround without any success so now want to attempt the VBA Macro fix but haven't got a clue how and where to enter the code - using Word 2010 on a computer running Windows 7.  I'm a total dummy when it comes to this type of thing so if there is anyone out there reading this who could lead me through this with step by step instructions that could be understood by a two year old I would really appreciate it!

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2013-08-27T01:39:10+00:00

    Worked great.

    Was this answer helpful?

    0 comments No comments