Sub DatesEvaluation()
Dim categorie As String
categorie = InputBox("Quelle est votre catégorie ?", "Catégorie")
If Len(categorie) = 0 Then Exit Sub
If IsNumeric(Application.Match(categorie, Feuil1.[a:a], 0)) Then
MsgBox "Votre évaluation doit se tenir en : " & Cells(Application.Match(categorie, Feuil1.[a:a], 0), 2), vbInformation, "Information"
Else
MsgBox "Cette catégorie n'existe pas.", vbInformation, "Information"
End If
End Sub