[table="width: 500"]
[tr]
[td]Function FindTxts(SingleCell As Range, RangeOfCells As Range) As Variant
Dim Cel As Range
For Each Cel In RangeOfCells
FindTxts = FindTxts + (Cel.Value <> 0 And InStr(1, SingleCell, Cel.Value, vbTextCompare) > 0)
Next
If FindTxts Then FindTxts = "Yes" Else FindTxts = "No"
End Function[/td]
[/tr]
[/table]