Check whether a cell contains a substring

前端 未结 9 1705
闹比i
闹比i 2020-11-30 17:41

Is there an in-built function to check if a cell contains a given character/substring?

It would mean you can apply textual functions like Left/R

9条回答
  •  广开言路
    2020-11-30 17:57

    Try using this:

    =ISNUMBER(SEARCH("Some Text", A3))
    

    This will return TRUE if cell A3 contains Some Text.

提交回复
热议问题