If you want to go directly to the end of a Word document when its opens:
Press Ctrl+End
If you want to create a macro that does this automatixcally, add the following lines of code in the Autoopen macro:
Sub AutoOpen()
Selection.EndKey Unit:=wdStory
End Sub