I am hoping someone can help on this one
I have a file that has mistakenly got supscript numbers that have been Hyperlinked.
I can't do the usual Ctrl+Shift+F9 because there are other non superscript Hyperlinks that I need.
Any help for a macro would be appreciated.
Is it possible to modify this macro I cam across.

Dim oField     As Field

For Each oField In ActiveDocument.Fields
    If oField.Type = wdFieldHyperlink Then
        oField.Unlink
    End If
Next


Set oField = Nothing