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
Left
R
Try using this:
=ISNUMBER(SEARCH("Some Text", A3))
This will return TRUE if cell A3 contains Some Text.
TRUE
A3
Some Text