I want to iterate through a column, and extract each hyperlink to be used in the code (going to compare it to some text).
Any good pointers on how to do the extraction p
You can use the .Hyperlinks(1).Address to get the Hyperlinks
.Hyperlinks(1).Address
For example this will extract the hyperlinks from A1 to A5
Sub Sample() Dim i As Long For i = 1 To 5 Debug.Print Range("A" & i).Hyperlinks(1).Address Next End Sub