Hi Bob,
You can assign the PageDown key to this macro. On pages other than the last,
it doesn't move the selection to quite the same location, but it's the best
I could do...
Public Sub MyPageDown()
If Selection.Information(wdActiveEndPageNumber) _
= ActiveDocument.Range.Information( _
wdActiveEndPageNumber) Then
Selection.EndKey unit:=wdStory
Else
Selection.MoveDown unit:=wdScreen, _
Count:=1, Extend:=wdMove
End If
End Sub