Opening at the END of a document October 22, 2007
Posted by iawalsh in : Cool Tricks , trackbackIf 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
Comments»
no comments yet - be the first?