![]() |
#1
|
|||
|
|||
![]()
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 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. |
Tags |
footnotes, hyperlinks |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
TheBigBoss | Word VBA | 5 | 06-10-2022 06:14 AM |
![]() |
henrychang | Word VBA | 9 | 04-15-2022 05:42 PM |
![]() |
jaanross | Word | 5 | 02-06-2020 12:04 AM |
![]() |
NoCalScribe | Word VBA | 3 | 07-15-2019 07:20 PM |
![]() |
Sabya | Word | 6 | 07-29-2018 02:30 PM |