Opening a word document at the end instead of the beginning

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, is there a way to open a document at the END of the document rather than
having it open at the start?
 
Press Ctrl+End upon opening the document.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
Sorry, but not what I asked. Is there a way to open the document at the end
rather than the beginning?
 
Not without pressing CTRL+End as Suzanne suggested - or using the vba
equivalent in an autoopen macro

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


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
And the reason I didn't mention a macro solution is that it will end up
being more mouse clicks or keypresses than pressing Ctrl+End because, unless
you have your Macro Security set to Low (which is not recommended), you'll
get a macro warning when you open the document and have to click Enable
Macros in order to proceed.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top