View Single Post
  #2   Report Post  
Greg Maxey
 
Posts: n/a
Default

Pressing Shift+F5 when the document is opened will take you to the last
point the document was edited. Pressing CTRL+End will take you to the end
of the document. If you want to open automatically to the end of the
document, you will need to use an AutoOpen macro:

Sub AutoOpen()
Selection.EndKey Unit:=wdStory
End Sub



--
Greg Maxey/Word MVP
A Peer in Peer to Peer Support

ridefixer wrote:
when I open a word document for additions or editing, how do I have
it open to the last page of the document?