Hyperlink help

  • Thread starter Thread starter Shani
  • Start date Start date
Hi Shani

Use this

Dim hlink As Hyperlink
For Each hlink In Columns("A").Hyperlinks
hlink.Parent.Offset(0, 1).Value = hlink.Address
Next
 
for each hlnk in Activesheet.hyperlinks
hlnk.parent.offset(0,1).Value = "'" & hlnk.Address
Next
 
sub Extracthypelinksaddress()
Dim hlnk as Hyperlink
for each hlnk in activesheet.hyperlinks
hlnk.parent.offset(0,1).Value = "'" & hlnk.Address
Next
End Sub

the most I could add is to come to your site and run the macro.
 
Back
Top