Sub Importe()
With Sheets("Feuil2")
On Error GoTo Erreur
Ligne = Application.Match([C26], .[D1:D10000], 0)
[D26:G26] = .Range(.Cells(Ligne, "E"), .Cells(Ligne, "H")).Value
End With
Exit Sub
Erreur:
[D26:G26].ClearContents
MsgBox "Sorry, date non trouvée."
End Sub