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: Most helpful
  1. Anonymous
    2015-10-28T21:18:56+00:00

    There ARE bugs here - either in the code (which I suspect) and/or in how MS expects users to understand the features of the interface for zoom controls.

    There are at least 4 different ways to directly interact with the zoom characteristics of a Word document:

    • the slider and buttons on the bottom right of Word
    • the View tab's preset one-click buttons
    • the View tab's Zoom dialog box interface with multiple INTERLOCKING, OVERLAPPING, CONFLICTING, and CONFUSING options
    • mouse/trackpad zooming (ctrl+scroll)

    Then beyond those direct interactions are some indirect ones:

    • settings saved into the document itself,
    • any Word application settings or "last usage" information that is stored, including window size (full screen, etc), 
    • size (as in resolution AND physical dimensions) of the monitor currently displaying the document,
    • any macros that folks have created or copied to "help" with the above headaches,
    • bugs in VBA in not updating the screen rendering after changing settings (Thanks for that, MS!)

    One bug that is really confusing (Word 2010 v14.0.7145.500 32bit, just to be concrete!), is when adjusting the zoom in various ways, what you see is not the whole state of what Word thinks you want. Just doing something that causes Word to re-render that document can alter the zoomed view! 

    For instance, you can set the display via VBA (aka - macros) to be 2 pages side-by-side, but the display oftentimes will NOT show that zoomed view when the macro is done.

    BUT - if you do something to adjust the screen real-estate (collapse the ribbon, add a side bar, adjust window to "restore" then full screen again, etc) the document will be re-rendered, pretty reliably to what VBA set it to be.

    For what its worth, and no promises it won't go amok & eat your family, at the bottom of this post I've appended my macros to force a re-rendering, with time delay to ensure it does it correctly. Without adding delay (like when using "Application.ScreenRefresh"), resizing is not correct as Page-Down does not quite jump whole pages.

    Same thing with mouse/trackpad zooming - you can adjust it this way to where you like it, but DON'T expect it to STAY that way when making one of the changes above that forces a re-rendering!

    I have found that if I use the zoom dialog box (View tab/Zoom), and set the "Many pages" control to 1x1 or 2x1, then it tends to STAY in that format when it can (meaning 1 page across, or 2 pages across). But subsequent mouse/trackpad zooming is not respected when re-rendered, as it pops back to that "Many pages" setting.

    Alternatively when I use the handy preset/quick buttons on the View tab, or the Whole Page option in the Zoom dialog box, various unexpected/undesired things can happen. 

    For instance, clicking the View tab's "One Page" or "Two Pages" button will do that.

    Then using mouse zooming can put you into a mode of varying back and forth between one AND two pages across!

    But - if you had used the slider instead of the mouse, it will vary across full range of the "many pages" option!

    Sometimes it seemed to depend on whether I dragged the slider directly, or hit the +/- buttons!

    And on and on.

    Some things are sticky, some work in a certain range, when done a certain way, and ... other times not so much.

    Who knows, maybe there are other interactions - like whether you were actually EDITING the document, vs just VIEWING it?

    I'm done - spent too much time fighting it, and then recording these findings so others can benefit from them.

    I would like to think MS devs could use this info, but with the end of 2010 mainstream support two weeks ago, and the releases of Office 2013, 2016 (huh?), Online/365... not gonna happen. 

    I doubt I'd have a job if I left problems like this untended for years!

    In short:

    Very annoying, very buggy. But with fiddling, you can get the view you want, at least for awhile - hopefully long enough to get the task done. Or hopefully with some of the above info you can get it back into something you can keep working with, until it happens again.

    (Wash, rinse, repeat.)

    Good Luck to all!

    Sub ZoomViewPrint2x1()

    'Changes zoom to Print Layout, with 2 full pages. Modified from:

    ' answers.microsoft.com/en-us/office/forum/office_2010-customize/changing-the-default-view-zoom-size-when-i-open

    On Error GoTo errhandler

    With ActiveWindow

        If .View.SplitSpecial = wdPaneNone Then

            .ActivePane.View.Type = wdPrintView

        Else

            .View.Type = wdPrintView

        End If

        With .ActivePane.View.Zoom

            .PageColumns = 2

            .PageRows = 1

        End With

    End With

        ActiveWindow.ToggleRibbon

        Application.OnTime When:=Now + TimeValue("00:00:01"), Name:="DelayedToggleRibbon"

    errhandler:

        Exit Sub

    End Sub

    Sub DelayedToggleRibbon()

        ActiveWindow.ToggleRibbon

    End Sub

    Was this answer helpful?

    0 comments No comments
  2. 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

  3. Anonymous
    2015-09-14T21:04:58+00:00

    Just do Ctrl+F, to bring up the navigation bar. This narrows your widescreen sufficiently enough to ensure that you can see just one page at a zoomed out view.

    -From ICTG33K

    Was this answer helpful?

    0 comments No comments