Sub Effacer()
Dim l As Long, c As Long, DerLig As Long, DerCol As Long
Application.ScreenUpdating = False
DerLig = Range("A" & Rows.Count).End(xlUp).Row
DerCol = Range("A1").End(xlToRight).Column
For c = 1 To DerCol
For l = 2 To DerLig
If Cells(l, c).Hyperlinks.Count = 0 Then Cells(l, c) = ""
Next l
Next c
End Sub