Sub Noms()
'Je cherche la derniere ligne utilises
VDer = Sheets("Essai").Range("a2000").End(xlUp).Row
'je definis ma zone de recherche
Set ZRP = Range(Cells(1, 1), Cells(VDer, 1))
Vchaine = " Gars"
For Each Nomhomme In ZRP
'je mets tout en majuscules
Nomhomme.Value = UCase(Nomhomme.Value)
'je cherche tous les maurice et les paul
If Nomhomme.Text Like "*PAUL*" Or _
Nomhomme.Text Like "*MAURICE*" Then
's'ils sont deja suffixes avec Gars, je ne fais rien
If InStr(1, NomhommeArchi, "Gars") > 0 Then
End If
'sinon, je les suffixe
Nomhomme.Value = Nomhomme & Vchaine
End If
Next Nomhomme
End Sub