A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
If you paste (a cell with) a hyperlink to a range, that entire range becomes the anchor of the hyperlink, and the target range will have a single hyperlink.
For example, consider the following code:
Sub TestHyperlink()
' Remove all existing hyperlinks
ActiveSheet.Hyperlinks.Delete
' Add hyperlink to cell A1
ActiveSheet.Hyperlinks.Add Anchor:=Range("A1"), Address:="http://www.eileenslounge.com"
' Copy A1 to C2:Z100
Range("A1").Copy Destination:=Range("C2:Z100")
' The sheet now contains two hyperlinks:
MsgBox "Sheet contains " & ActiveSheet.Hyperlinks.Count & " hyperlinks"
' The anchor of the second hyperlink is C2:Z100:
MsgBox "The anchor of the second hyperlink is " & ActiveSheet.Hyperlinks(2).Range.Address
End Sub