How To Find Text With A Formula
Question: What formula tells you if A1 contains the text “apple”? This is a surprisingly tricky problem in Excel. The “obvious” answer is to use the FIND function to “look” for the text, like this: =FIND("apple",A1) Then, if you want a TRUE/FALSE result, add the IF function : =IF(FIND("apple",A1),TRUE) This works great if “apple” is found – FIND returns a number to indicate the position, and IF calls it good and returns TRUE....