Please Note: This article is written for users of the following Microsoft Word versions: 97, 2000, 2002, and 2003. If you are using a later version (Word 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Word, click here: Returning to Your Document after Adding an Endnote.
Written by Allen Wyatt (last updated August 3, 2024)
This tip applies to Word 97, 2000, 2002, and 2003
Daniel has a document in which he ended up creating a lot of endnotes. When he clicks on the tool to add the endnote, he's taken to the end of the document and he can type his endnote. Daniel wonders if there is a shortcut key he can then use to return to where he was in the main document before he clicked on the tool to add the endnote.
There are a number of approaches you can use to this issue. First, if you want to return to the document immediately after typing the endnote text, just press Shift+F5. This immediately returns you to your last editing location in the main document, which happens to be where you inserted the endnote.
Another option is to simply double-click on the endnote reference, at the beginning of the endnote. That action returns you to the endnote mark within the main document. (You can also double-click on the endnote mark and Word transports you to the appropriate endnote.) The problem with this approach is that it positions the insertion point before the endnote mark, so you can't just start typing away; you may still need to move the insertion point to where you want to make your next edit.
It is interesting that pressing Alt+V and then F also jumps back to the beginning of the endnote mark. This key sequence essentially displays the View menu and then chooses the Footnote command from that menu. Since you cannot insert a footnote within an endnote, the result is that you jump back to the main document.
Still another approach is helpful if you remember the page number you were on when you inserted the endnote. If you were on, for instance, page 16, you can press F5 to display the GoTo tab of the Find and Replace dialog box, type 16, and then press Enter. This takes you back to page 16, although it is unlikely that this will coincide, exactly, with where the endnote was inserted.
You could also put some sort of marker in your document just before inserting the endnote, and then use the marker to jump back to that location. For instance, you could type XXX just before inserting the endnote. When you are ready to jump back, just do a quick search (Ctrl+F) to locate the XXX characters and return to your spot.
Finally, you can create a flexible way of returning to wherever you want in a document (not just where you insert an endnote) by creating a couple of simple macros.
Sub Mark_Current() With ActiveDocument.Bookmarks .Add Range:=Selection.Range, Name:="Current" .DefaultSorting = wdSortByName .ShowHidden = False End With End Sub
Sub Goto_Current() Selection.GoTo What:=wdGoToBookmark, Name:="Current" ActiveDocument.Bookmarks("Current").Delete End Sub
When you want to remember where you are (such as just before inserting your endnote), you run the Mark_Current macro. It inserts a bookmark (named "Current") in the document at the location of the insertion point. When you later want to return to that location, just run the Goto_Current macro.
To make these macros the most useful, just assign them shortcut keys. Press one shortcut key to "remember" your location and the other shortcut key to return to that location at a later time.
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 (9886) 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: Returning to Your Document after Adding an Endnote.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
The reference marks that appear for footnotes in a document are normally just superscripted digits. If you want to change ...
Discover MoreNeed to make a cross-reference from one footnote to another footnote? You can do it if you throw bookmarks into the mix, ...
Discover MoreDeleting either footnotes or endnotes is a simple process. Just select the reference mark and delete it. Assuming you are ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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 © 2024 Sharon Parq Associates, Inc.
Comments