Quick Answer: To check if a cell (e.g., A2) contains any text from a list (e.g., D2:D4), don't use nested IFs. Universal Formula (All Excel Versions) =IF(SUMPRODUCT(--ISNUMBER(SEARCH(D$2:D$4, A2)))>0, "Yes", "No") Modern Excel (Microsoft 365, 2021+) =IF(OR(ISNUMBER(SEARCH(D$2:D$4, A2))), "Yes", "No") Summary This guide teaches you how to efficiently check if a cell contains one of many The post Excel IF Cell Contains One of Many: The Definitive Guide appeared first on Excelx.com.