Delete all bookmarks - How?

J

Jezebel

Switch to VBA. In the Immediate window type

Do until ActiveDocument.Bookmarks.Count = 0 :
activedocument.bookmarks(1).delete : loop

If you want to delete hidden bookmarks also, you'll first need to check the
'Show hidden bookmarks' checkbox on the Bookmarks dialog.
 
R

Richard

Thanks ....

Richard

Jezebel said:
Switch to VBA. In the Immediate window type

Do until ActiveDocument.Bookmarks.Count = 0 :
activedocument.bookmarks(1).delete : loop

If you want to delete hidden bookmarks also, you'll first need to check
the 'Show hidden bookmarks' checkbox on the Bookmarks dialog.
 

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