I am trying to use a macro to turn text at hyperlinks into footnotes. My Macro looks like this:
Code:
Sub HLnk2FtNt()
Application.ScreenUpdating = False
Dim h As Long, Rng As Range
With ActiveDocument
For h = .Hyperlinks.Count To 1 Step -1
With .Hyperlinks(h)
Set Rng = .Range
With Rng
.Collapse wdCollapseEnd
.Footnotes.Add Rng
.End = .End + 1
End With
Rng.Footnotes(1).Range.FormattedText = .Range.FormattedText
.Range.Fields.Unlink
End With
Next
End With
Application.ScreenUpdating = True
End Sub
It however does not do what I want.
I attach the original Word document: SmallTest.docx
The file after running the macro: SmallTest_AfterMacro.docx and
A document showing what I actually want.
Any help will be much appreciated.