Looking for a snippet that can generate Cross-References from all Bookmarked Items within a document.
Let's say I have a comprehensive document that contains 20 bookmarked words - then I would like the macro for each of them find the exact word within the document and create a cross reference to the bookmarked item. I thought this would be of much use to many of us, but can't find anything and have no clue where to start.

Any help welcome...

Sub CrossRefBookmark()Selection.InsertCrossReference ReferenceType:=wdRefTypeBookmark, _
ReferenceKind:=wdContentText, ReferenceItem:=Trim(Selection.Text), _
InsertAsHyperlink:=True
End Sub