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