Jumping to the End without Repaginating

Written by Allen Wyatt (last updated June 25, 2018)
This tip applies to Word 97, 2000, 2002, and 2003


Bob wondered if there is a way to jump to the end of a document, upon opening, without having the document repaginate. It seems that the repagination process slows him down a bit, and he is looking for a way to speed things up.

Before getting into an answer, it should be noted that the repagination process should only slow a person down if any of three conditions are met:

  • Slow computer. If the computer is intrinsically slow or has quite a few other processes besides Word that are going on behind the scenes, then repagination can slow things down.
  • Big document. An extremely long or quite complex document can result in slow repagination. Tests show that a straightforward 600-page document typically takes about three or four seconds to repaginate—not a big slowdown. If the document contained lots of footnotes, large graphics, hidden text, or other items that affect pagination, then the process would take longer.
  • Bad document. If the document is heavily edited and older, then repagination can be slower. This apparently occurs after many, many intense editing sessions where lots of text is added, deleted, and moved around. Sometimes Word's internal document pointers can get "messed up."

The solutions to these conditions should be obvious to most readers, with the possible exception of the "bad document" cause. In this case, it is best to try to do a Save As using a new filename or, better still, to copy and paste the information from the old document to a new one.

That being said, if you still want to turn off pagination and jump to the end, this can be done, with a caveat. The caveat is that you can only turn off pagination if you are viewing the document in Normal view. If you switch to another view (Print Layout or Page Layout being the most common), then Word automatically does repagination and there is no way to turn it off.

The following short macro could be used as an AutoOpen macro for your document. When you open the document, Word switches to Normal view, turns off background repagination, and jumps to the end of the document.

Sub AutoOpen()
    If ActiveWindow.View.Type <> wdNormalView Then
        ActiveWindow.View.Type = wdNormalView
    End If
    Options.Pagination = False
    Selection.EndKey Unit:=wdStory
End Sub

The Options.Pagination property is the same setting you can make manually if you choose Tools | Options | General tab and toggle the Background Repagination check box. The setting of this check box is only meaningful if Word is operating in Normal view, thus the need to switch to that view prior to setting the option and jumping.

Remember that if you later do something that requires Word to repaginate (such as switching to Print Layout or Page Layout view or using the Go To feature to jump to a particular page number), then Word will dutifully repaginate your document, introducing the delay you want to avoid.

For completeness you may want to add an AutoClose macro to your document. This macro does nothing but turn on the background pagination option so that it will work normally with other documents.

Sub AutoClose()
    Options.Pagination = True
End Sub

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (1294) applies to Microsoft Word 97, 2000, 2002, and 2003.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Formatted Dates Appear Differently on Different Systems

When you format a date in a specific manner, you may be surprised to see that the format changes when you open the ...

Discover More

Adding a Horizontal Watermark with a PostScript Printer

In Windows, printer drivers translate formatting into a printer control language, like PostScript, that the printer ...

Discover More

Microsoft Word's Amazing Autos

Word provides several tools that can aid in developing your documents. This e-book focuses on a few of those tools. You ...

Discover More

Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2013. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word 2013 Step by Step today!

More WordTips (menu)

Jumping to a Page within a Section

In long documents it is often helpful to jump directly to a particular page. Word provides several tools you can use to ...

Discover More

Jumping to a Section

One way you can navigate through a document is to jump from section to section. Here's the traditional way to quickly get ...

Discover More

Jumping to a Relative Line Number

As you navigate through a document, you may have a need to move forward or backward a specific number of lines. This is ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is nine minus 5?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.