Hi! I have a basic formula that searches a column for a cell's contents - in the attached example, I'm checking if the text in B2 ('affordable plumbers') appears in any of the cells in column A. I'd like to evolve this formula (or replace it entirely) with a formula that can check if the contents of cell B2 appear *in any order* in any cell in Column A. In this example, I'd want to also yield a 'yes' next to the targeted keyword 'plumbers that are affordable', because it contains both 'plumbers' & 'affordable'. Formula I'm using is below! TIA!
Code:
=IF(COUNTIF($A$2:$A$1048576,"*"&B2&"*"),"Yes","No")