View Single Post
 
Old 07-22-2019, 01:28 AM
Wordfinder Wordfinder is offline Windows 10 Office 2019
Novice
 
Join Date: Jul 2019
Posts: 6
Wordfinder is on a distinguished road
Default

Quote:
Originally Posted by Guessed View Post
Converting to text only is akin to throwing the baby out with the bathwater.

The bookmarks are not a particular problem you need to remove and certainly if there are any cross-references in the document, removing bookmarks could be causing lots of broken cross-references.

You can HIDE the bookmark indicator so they become invisible by going to Tools > Options > Advanced > Show Document Content > Show Bookmarks and unchecking the box.

You can delete all bookmarks by running a macro such as
Code:
Sub KillBookmarks()
  Do While ActiveDocument.Bookmarks.Count > 0
    ActiveDocument.Bookmarks(1).Delete
  Loop
End Sub
Agree with you, and personally didn't like to delete the bookmarks. I need to import the .docx into a CAT Tool (translation software), so I guessed, it's better to remove those bookmarks and thought they would be some causes in the CAT Tool by their formatting tags or anything else.
Hide/Show is a good idea for hiding bookmarks while we need them, but we don't like they appear on my docs. Thank you!
Reply With Quote