Welcome toWord.Tips.Net
Ask a Word Question
Make a Comment
Learn Access Now
Free Printable Forms
Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Legal Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips
Setting Fraction Bar Overhang Spacing in the Equation Editor
Printing On Both Sides of the Paper
Turning Off AutoComplete for Dates
Understanding Auto Line Spacing
Adding Comments to Your Document
Conditional Calculations in Word
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.
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 to a new file name, 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. (In Word 2007 there is no control for this setting; background pagination is on by default.) This 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
Tip #1294 applies to Microsoft Word versions: 97 2000 2002 2003 2007
Document and Annotate! One of the easily overlooked tools provided by Word is the ability to add footnotes and endnotes to your documents. WordTips: Footnotes and Endnotes is the definitive resource guide to using these tools to enhance your documents.