As covered in other issues of WordTips, you can jump to the last place that you edited in a document by pressing the Shift+F5 key. In other words, open the document, press the shortcut, and the insertion point jumps directly to the last edit point in the document.
If you work on the same document quite often, you may like a little macro that opens that last file you worked on, and then automatically jumps to the last edit location in that document.
Sub OpenLastDoc1() RecentFiles(1).Open Application.GoBack End Sub
Assign the macro to a shortcut or a toolbar button, and you've got a fast way to continue working wherever you were in your last session with Word. If you prefer, you can make one change to the macro that jumps to the end of the document, rather than to the last place you edited:
Sub OpenLastDoc2() RecentFiles(1).Open Selection.EndKey Unit:=wdStory End Sub
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 (106) applies to Microsoft Word 97, 2000, 2002, and 2003.
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!
Word keeps track of quite a bit of document-related information that it refers to as "properties." Here's how to control ...
Discover MoreOpen a Word document file, and you can start to make edits and changes to your heart's content. But what happens if the ...
Discover MoreWhen you start Word, it makes an assumption about where your documents are stored. If you want to force Word to change ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2016-10-27 18:16:01
Stephen Norman Chase
Allen how can I make my IMac's 2008 MSWord app open with the last edited/used document instead of a blank document each time?
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.
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2021 Sharon Parq Associates, Inc.
Comments