Quick Bookmark Shift F5 WordPerfect Control+Shift+Q

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I know about Shift F5, but I want a bookmark that does not change as I go
along and move about in the document, as Shift F5 appears to do. and I don's
want to have to give it a name....this takes too long.

In WordPerfect, you press Control+Shift+Q and it sets a bookmark wherever
the curser is. To go to that spot, you press Control+Q. That spot will
always be there no matter what. To change it, you press Control+Shift+Q
again at a new spot.
 
There is nothing comparable in Word. If you need this functionality, then
you know where to find it.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
Word remember the previous 5 edit points. So if you need to remember a place
temporarily so that a Bookmark is overkill, create an edit say backspace to
delete a character and then Undo it.

Word should remember the point for that session or until you have performed
5 new edits elsewhere.

Also, have you checked out the DocMap function? It is excellent for fast
navigation around long documents.
 
I think you're mistaken, Terry. I think it's only the last three edit points
(the fact that it's Shift+F5 may be suggesting five to you).

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
Terry said:
Also, have you checked out the DocMap function? It is excellent for
fast navigation around long documents.
on the DocMap, see:
http://www.shaunakelly.com/word/documentmap/index.html

Other potential workarounds: Edit | Go To, Outline View, and Browse Object.

More info on some of those here:
http://word.mvps.org/FAQs/Formatting/UsingOLView.htm
http://daiya.mvps.org/browseobject.htm

Alternatively, ask in a Word Programming Group for someone to help you
write two macros that would replicate this feature.
 
Obviously, you can find it in WordPerfect.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
Thanks every body.

Suzanne S. Barnhill said:
Obviously, you can find it in WordPerfect.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
You could create a couple macros to do this. Something like:

Sub AddBookmark()
ActiveDocument.Bookmarks.Add Range:=Selection.Range, Name:="StartHere"
End Sub

Sub GotoBookmark()
Selection.GoTo What:=wdGoToBookmark, Name:="StartHere"
End Sub

Then you can assign Ctrl+Q and Ctrl+Shift+Q to them.

If you want to create these macros yourself, go to Tools/Macro/Record Macro
and record a macro for inserting your bookmark (Insert/Bookmark). Then
record another macro for using the Go To dialog box to navigate to the
bookmark.

Please post all follow-up questions to the newsgroup. Requests for
assistance by email can not be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Co-author of Word 2007 Inside Out:
http://www.microsoft.com/MSPress/books/9801.aspx#AboutTheBook

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/
 
Back
Top