Removing all bookmarks from a document.

G

Guest

Using Word 2003 - Is there a way to remove all bookmarks from a document
without having to write a program?
 
J

Jay Freedman

Without a macro, the only way is to open the Insert > Bookmark dialog,
highlight one bookmark at a time and click Delete, and repeat until
they're all gone.

What's your objection to a macro? Especially one as simple as

Sub DeleteAllBookmarks()
Dim i As Integer
For i = 1 To ActiveDocument.Bookmarks.Count
ActiveDocument.Bookmarks(1).Delete
Next i
End Sub
 
G

Guest

I've never created or run a macro so I'm not sure how to do this. Any tips
are welcomed.
 

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