Function Fournisseur(N As Range, Libellé As Range, Résultat As Range)
Dim T_Libellé, T_Résultat, i%
T_Libellé = Libellé
T_Résultat = Résultat
For i = 1 To UBound(T_Libellé)
If LCase(N) Like LCase("*" & T_Libellé(i, 1) & "*") Then
Fournisseur = T_Résultat(i, 1)
Exit Function
End If
Next i
End Function