Cursor Opening

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
 
G

Greg Maxey

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
 
Top