I use the following formula to show TRUE or FALSE if cell B2 is found anywhere in column A.
=IF(COUNTIF(A:A,B2),TRUE,FALSE)
This only shows TRUE if a cell in column A matches cell B2 exactly. How can I get this to show TRUE or FALSE if the cell in column A only CONTAINS the text in cell B2?
=IF(COUNTIF(A:A,B2),TRUE,FALSE)
This only shows TRUE if a cell in column A matches cell B2 exactly. How can I get this to show TRUE or FALSE if the cell in column A only CONTAINS the text in cell B2?