Bonjour à tous,
@Ronibo
voici un exemple,
Sub Recherche()
Dim keywords As String, c As Range, n As Integer
keywords = "x" 'adapter
With Range("A1:A500") 'adapter
Set c = .Find(keywords, LookIn:=xlValues, LookAt:=xlPart)
If Not c Is Nothing Then
firstAddress = c.Address
Do
n = Application.Find(keywords, c.Value)
With c.Characters(Start:=n, Length:=Len(keywords))
.Font.Color = RGB(255, 0, 0)
End With
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> firstAddress
End If
End With
End Sub