Word 2007 displays two pages next to each other in my documents instead of one.

Anonymous
2010-08-22T12:31:25+00:00

Hey, I have this problem where Word 2007 displays two pages next to each other instead of just one. In display options I can select show only one page, but this changes the size to 73% and that's not big enough for me. If I change the size to 100% after that it reverts to show two pages next to each other. If there is only one page in the document that page is shown in the left side of Word instead of in the middle. I have found a workaround where I first click web layout, and then back to print layout and it will show as normal until I close the document and open it again. So I'm just wondering if there is a permanent solution to my problem. This problem started when I installed Word 2007.

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
2010-08-24T00:56:13+00:00

You're seeing this because you have the Word window sized extremely wide on a high-resolution 1680x1050 display. If you want to see just one page in the center of the Word window at 100% zoom, drag

the right edge of the window to the left so it's nearly the same width as the ribbon.

Word makes its decision of how many pages to display on the basis of the current width of the page (as set by the zoom factor) compared to the current width of the client window (the blue space). If

it can fit two pages, then it will show two pages -- there is no way to tell it not to. Because you want a specific zoom (100%), the only factor you can adjust is the window width.


Jay Freedman

MS Word MVP  FAQ: http://word.mvps.org

Was this answer helpful?

20+ people found this answer helpful.
0 comments No comments
Answer accepted by question author
Anonymous
2012-02-16T03:01:09+00:00

Just found a fourth way to fix this annoying problem.

For me, it has been recurring on one old document, but not on any other documents I have.

Go to Page Layout, Size and change to a different size (for me I changed from A4 to A5).

Then go and change the setting back ( for me, to A4).

No more problems for me.

Was this answer helpful?

7 people found this answer helpful.
0 comments No comments

56 additional answers

Sort by: Oldest
  1. Anonymous
    2011-04-14T07:05:27+00:00

    Without knowing anything about your documents it is impossible to comment, but the macro code I posted will certainly work - you could however add an extra line

    With ActiveWindow.ActivePane.View.Zoom

        .Percentage = 100

        .PageColumns = 1

        .PageRows = 1

    End With

    If you incorporate this in an autoopen macro in the normal template, then provided that is not overridden by macros in the document or its template all documents will at least open in one page view.

    You can also intercept the print layout view command with a macro to force the required settings:

    Sub ViewPage()

    With ActiveWindow

        If .View.SplitSpecial = wdPaneNone Then

            .ActivePane.View.Type = wdPrintView

        Else

            .View.Type = wdPrintView

        End If

        With .ActivePane.View.Zoom

            .Percentage = 100

            .PageColumns = 1

            .PageRows = 1

        End With

    End With

    End Sub

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2011-04-15T15:25:52+00:00

    Further to my reply of the 13th, I have now created a web page covering this issue:

    http://www.gmayor.com/ZoomandView.htm

    Was this answer helpful?

    0 comments No comments
  3. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more