Cursor Opening

  • Thread starter Thread starter Jeff J
  • Start date Start date
J

Jeff J

I'm writing a rather lengthy Word document. Is there any
way for it to open where I left off with the cursor
instead of it opening at page one again? Jeff J
 
Jeff,

You can press SHIFT+F5 when the document opens.

As an alternative, you can put the following line in an
AutoOpen Macro:



e.g.,

Sub AutoOpen()
Application.GoBack
End Sub
 
Back
Top