Sub CopierLiens()
Dim c As Range
On Error Resume Next
For Each c In [A:A].SpecialCells(xlCellTypeConstants, 2)
With c.Hyperlinks(1)
c(1, 2).Hyperlinks.Add c(1, 2), .Address, TextToDisplay:=c(1, 2).Text
c(1, 2).Hyperlinks.Add c(1, 2), .Address, .SubAddress, TextToDisplay:=c(1, 2).Text
End With
Next
End Sub