Hereby an example of the Filter()
function: my worksheet contains four cells B2-B4, containing "a,b,c", "b,c,d" and "c,d,e". Using the following Filter()
worksheet function, I can make sure I only see entries, containing "b":
=FILTER(B2:B4;ISNUMBER(SEARCH("b";B2:B4)))
Explanatory screenshot:
![enter image description here]()