I am trying to search for multiple items in a cell. If any of the terms I am looking for is present, I want cell D to display \"Laptop\", otherwise, display \"Desktop\". I can g
This should work:
=IF(SUM(COUNTIF(A2,"*" &{"blah1";"blah2";"blah3"}& "*"))>0,"laptop","desktop")