View Single Post
 
Old 07-21-2019, 04:16 PM
Guessed's Avatar
Guessed Guessed is offline Windows 10 Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 4,176
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

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
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote