How do I open my Word Doc right where I ended

T

Taras49

I have a 100 page journal converted from a "WordPerfect" program. In
WordPerfect, when I opened the document I automatically went to the end of
the document where I could pick up where I left off. In "Word" I open the
doc at page one. can I open the doc at the end of the doc?
 
G

garfield-n-odie [MVP]

In Word, open the doc, and press Ctrl+End to go to the last page, or
press Shift+F5 to go to the last editing point.
 
J

Jay Freedman

I have a 100 page journal converted from a "WordPerfect" program. In
WordPerfect, when I opened the document I automatically went to the end of
the document where I could pick up where I left off. In "Word" I open the
doc at page one. can I open the doc at the end of the doc?

If you just want to go to the end of the document, press Ctrl+End.

If you want to return to the last place that was edited, wherever that
may be, when the document opens, press Shift+F5 (the shortcut for the
GoBack command).

If you have Word 2007, unfortunately GoBack works only for documents
saved in Word 97-2003 format. In earlier versions, if you have trouble
getting GoBack to work, see
http://www.word.mvps.org/FAQs/AppErrors/GoBackFix.htm.
 
G

Graham Mayor

You can easily work around the problem with a few simple macros stored in
the normal template. These intercept the save and saveas routines to insert
a bookmark at the cursor position and locate the cursor at that bookmark (if
present) when the document is next opened. If you already have macros with
these names, incorporate the code in those macros.

Sub FileSave()
On Error Resume Next
ActiveDocument.Bookmarks.Add Range:=Selection.Range, name:="OpenAt"
ActiveDocument.Save
End Sub

Sub FileSaveAs()
On Error Resume Next
ActiveDocument.Bookmarks.Add Range:=Selection.Range, name:="OpenAt"
Dialogs(wdDialogFileSaveAs).Show
'Add filename and path to title bar
ActiveWindow.Caption = ActiveDocument.FullName
End Sub

I have added a couple of optional extra lines in the following (and one in
the previous macro) -

Sub AutoOpen()
'add filename and path to title bar
ActiveWindow.Caption = ActiveDocument.FullName
'turn on table grid line display
ActiveWindow.View.TableGridlines = True
If ActiveDocument.Bookmarks.Exists("OpenAt") = True Then
ActiveDocument.Bookmarks("OpenAt").Select
End If
End Sub

to ensure that gridlines are always displayed and to put the filename and
path in the Word title bar.

http://www.gmayor.com/installing_macro.htm

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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

Top