Sub Creer_Liens()
Dim r As Range, cible As Range
Application.ScreenUpdating = False
With Sheets("JOURNAL GENERAL")
Set r = Union(.[F5:N16], .[T5:AH16])
r.Clear 'RAZ
r.NumberFormat = "0.00 €"
r.HorizontalAlignment = xlCenter
For Each r In r
Set cible = Sheets(r.Row - 3).Cells(29, r.Column).End(xlUp)
r = cible.Value
.Hyperlinks.Add r, "", cible.Address(0, 0, External:=True)
Next r
End With
End Sub