Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
Dim obj As OLEObject
On Error GoTo FIN
Set obj = ThisWorkbook.Sheets("fiche").OLEObjects(Target.Name)
If Not obj Is Nothing Then obj.Verb xlVerbOpen
FIN:
If Err.Number > 0 Then
MsgBox "L'objet '" & Target.Name & "' est introuvable sur la feuille 'fiche'", vbExclamation, "Ouverture fichier docx"
End If
On Error GoTo 0
End...