A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I don't think that it is possible without VBA. You could use the following user-defined function:
Function LinkAddress(c As Range) As String
If c.Hyperlinks.Count Then
LinkAddress = c.Hyperlinks(1).Address
End If
End Function
Let's say you have hyperlinks in B2 and down. In (for example) C2, enter the formula
=LinkAddress(B2)
and fill down as far as you want.