Function TrouverRessemblance(MotAChercher$)
Dim PlageDeRecherche As Range, Cellule As Range
TrouverRessemblance = ""
Set PlageDeRecherche = Sheets("DATA Fournisseur").Range("A1:A1000")
For Each Cellule In PlageDeRecherche
If InStr(1, Cellule.Value, MotAChercher, vbTextCompare) > 0 Then
TrouverRessemblance = Cellule: Exit Function
End If
For N = Len(MotAChercher) To 4 Step -1
MotAChercher2 = Right(MotAChercher, N)
If InStr(1, Cellule.Value, MotAChercher2, vbTextCompare) > 0 Then TrouverRessemblance = Cellule: Exit Function
MotAChercher2 = Left(MotAChercher, N)
If InStr(1, Cellule.Value, MotAChercher2, vbTextCompare) > 0 Then TrouverRessemblance = Cellule: Exit Function
Next N
If TrouverRessemblance = "" Then TrouverRessemblance = MotAChercher & "(Non modifié)"
Next Cellule
End Function