View Bookmarks

A

Alexander Mueller

Hi @all

Can I and how can I view Bookmarks with theri names displayed within
a word document. I am kind of beginner and create some bookmarks
and i doubt whether their located at the intended positions,
so I'd like to see them IRL.

MfG,
Alex
 
R

Russ

Alex,
The menu Tools/Options..., View Tab...Show Bookmarks.
And the menu Insert/Bookmarks....
And the menu Edit/Go to...
The Browser buttons below the vertical scrollbar in each document window.
Keys Ctrl/Page Up and Ctrl/Page Down while using the browser buttons for
objects.
 
A

Alexander Mueller

Russ said:
Alex,
The menu Tools/Options..., View Tab...Show Bookmarks.
And the menu Insert/Bookmarks....
And the menu Edit/Go to...
The Browser buttons below the vertical scrollbar in each document window.
Keys Ctrl/Page Up and Ctrl/Page Down while using the browser buttons for
objects.


Hi Russ

thanks much, that works!

MfG,
Alex
 
T

Tony Strazzeri

Hi @all

Can I and how can I view Bookmarks with theri names displayed within
a word document. I am kind of beginner and create some bookmarks
and i doubt whether their located at the intended positions,
so I'd like to see them IRL.

MfG,
Alex

This is not a feature that Word is capable of. In the past when I
have needed this for checking a document I have created a VBA
procedure to insert the bookmark name as a comment at it's location

Something along the lines of

dim bm as bookmark

for each bm in Activedocument.bookmarks
bm.Select
Selection.Comments.Add Range:=bm.Range
Selection.Typetext Text:=bm.Name
Next

Hope this helps.

Cheers
TonyS.
 

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