how to open doc at last page or at save location

  • Thread starter Thread starter Sandpiper
  • Start date Start date
S

Sandpiper

I am working on a document to which I add to the end frequently, much like
writing a diary. As the document grows in length, it is would be nice to
have it open either on the last page, or open to the page where it was last
saved. How can this be done? Thanks.
 
Sandpiper,

Shift+F5 after you open your document will take you to the
last edit point.

If you want to completely automate this, then record and
macro of pressing Shift+F5 and put the code in an AutoOpen
macro.
 
Microsoft Word keeps track of the last three locations where you typed or
edited text. To return to a previous editing location, press SHIFT+F5 until
you reach the
location you want.
or
CTRL+End will take you to the end of the document
or
Create an autoopen macro in the document's template containing the line:
Application.GoBack

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><
Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>><
 
Thank you both for the suggestions.


Microsoft Word keeps track of the last three locations where you typed or
edited text. To return to a previous editing location, press SHIFT+F5 until
you reach the
location you want.
or
CTRL+End will take you to the end of the document
or
Create an autoopen macro in the document's template containing the line:
Application.GoBack

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><
Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>><
 
Back
Top