When opening large Word document, how to open where edited las
"Klaus Linke" wrote:
"Curtis" wrote:
I am editing a large dissertation and would like to return to the exact
point
where I edited last instead of the beginning of the document. Is there
any
way to set Word to automatically take me to where I left off (usually deep
in
the middle of the document) whenever I open the document?
You can go back to the last edit with the GoBack command. The keyboard
shortcuts (on my machine at least) for that are Shift+F5 or Alt+Ctrl+Z.
If you want it to happen automatically each time you open a doc, you can add
a short AutoOpen macro to your Normal template:
Sub AutoOpen()
Application.GoBack
End Sub
If you haven't used macros befo
In the menu, go to Tools Macro Macros..., type in AutoOpen as the new
macro's name, click on the Edit button.
Then edit that macro so it looks like the one above.
If you close Word, you may be asked if you want to save the changes to the
global template... Answer "Yes".
Regards,
Klaus
Klaus,
I tried your suggestions but neither worked. Someone also suggested using
the Bookmark feature. I might give that a try too. Thanks for offering to
help.
Appreciatively,
Curtis
|