Word doesn't have a built-in command to jump to the top of the current (or next) page. Instead, Word expects you to use the Go To command to make those sort of jumps. (Just press F5, select Page, then click on Next or Previous.) If you need to jump to the top of the current page quite often, this approach can quickly become tedious. Sounds like a perfect opportunity to use a macro!
The following macro jumps to the top of the current page:
Sub TopOfThisPage() Selection.GoTo What:=wdGoToBookmark, Name:="\Page" Selection.MoveLeft Unit:=wdCharacter, Count:=1 End Sub
If you want to go to the top of the next page, simply change the MoveLeft method to the MoveRight method. The macro relies on the use of the \Page bookmark, which is built-in to Word.
Once the macro is created, you can assign it to a keyboard shortcut or design a toolbar button to utilize it.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (742) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Jumping to the Top of a Page.
The First and Last Word on Word! Bestselling For Dummies author Dan Gookin puts his usual fun and friendly candor back to work to show you how to navigate Word 2013. Spend more time working and less time trying to figure it all out! Check out Word 2013 For Dummies today!
When processing a document using a macro, you may need to know the precise size of a particular file. The way you figure ...
Discover MoreWhen creating macros, it is often necessary to know which directory is the default. Here's how you can find out by using ...
Discover MoreInserting a break in your document is easy. You may think that inserting one using a macro is more complex, but it isn't. ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2020-05-12 13:25:36
Allan
I must be missing the point here, but what's wrong with Ctrl+Home to immediately go to top of the current page?
2020-05-11 10:13:30
Roger E Plant
Allen, each time I see your picture as a result of an internet search which I have done, I feel confident you will provide the information I need. Unfortunately, I need a little more guidance. I have a 200 page document and have a macro button set in the Header section of each page. I double click on the Header to select it and then double click again to run the macro. There might be a better way but I don't know it - being new to word vba.
My problem is that I might be at page 64, for example, and have selected the Header on this page. I need to then search for a keyword (i.e., MLS#) ON THAT PAGE and I don't know how to get to the top of that page. I want to avoid: currentpage = Selection.Range.Information(wdActiveEndPageNumber) since it takes to long to execute. Is there another way I can get to the top of page 64 and then search for my keyword?
Thank you very much.
Roger
2019-10-01 11:12:03
This does not work if you are on the second page and it is a blank page
2016-12-22 18:18:30
But2LuvJustice
CTRL --> SHIFT --> HOME
2016-08-14 08:27:56
Mike
Well sadly this doesn't help me as every time in word I press any key my document jumps to the first page then press another key and it jumps to the last page. The laptop worked perfectly 2 hrs ago and all I have done is switch it on again and this is now happening and no one has any idea of telling me a way how to fix the problem.
Mike
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.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2022 Sharon Parq Associates, Inc.
Comments