Bonsoir,
Un début,
Le soucis c'est le mot 'anomalie" présent plusieurs fois sur la même ligne
Sub test()
Dim dl%, i%
dl = Range("e" & Rows.Count).End(xlUp).Row
For i = 1 To dl
If Cells(i, 5) Like "*anomalie*" Then
Cells(i, 5).Characters(InStr(1, Cells(i, 5).Value, "anomalie"), Len("anomalie")).Font.Bold = True
End If
Next i
End Sub