![]() |
|
|
|
#1
|
||||
|
||||
|
Within a document, within a Word session, Shift+F5 should let you move between the most recent edit points. The shortcut no longer works reliably after you save, close and reopen the document.
MVP Graham Mayor has suggested the following set of macros to fix the problem: Code:
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
End Sub
Sub AutoOpen()
If ActiveDocument.Bookmarks.Exists("OpenAt") = True Then
ActiveDocument.Bookmarks("OpenAt").Select
End If
End Sub
__________________
Stefan Blom Microsoft Word MVP Microsoft 365 apps for business Windows 11 Professional |
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Ctrl+Shift+C and V not working
|
Ulodesk | Word | 3 | 07-05-2013 12:48 PM |
| Which ODF/ .odt version is word 2010, 2013 preview & eventually 2013 full using? | semiotically | Word | 8 | 11-08-2012 05:44 PM |
Noob here - I need a shift calendar by days with count of shift.
|
freeman | Excel | 8 | 09-12-2012 08:45 AM |
How to return to where you left off? Shift+F5 not working.
|
WaltR | Word | 2 | 12-24-2010 11:33 AM |
| Word 2003 Shift F3 | FLMT | Word | 0 | 02-22-2009 08:11 AM |