salve
con macro, prova questa:
forse ti risolve ( ho ipotizato che formatti le celle che corrispondono al nome "pippo")
Sub test()
Set rng = Range("k3", Range("K3").End(xlDown))
Formula = "=" & rng.Address(False, False) & " = ""pippo"""
rng.Select
Selection.FormatConditions.Delete
Selection.FormatConditions.Add Type:=xlExpression, Formula1:=Formula
Selection.FormatConditions(1).Interior.ColorIndex = 6
Set rng = Nothing
End Sub
saluti
Giap