Hi,
Depends what you mean by "contains". If you mean that the entry in cell A1 matches precisely your phrase, then, in B2 enter:
=IF(A1="This Phrase",TRUE)
If you mean that cell A1 contains your phrase somewhere within its string, then, in B2:
=IF(ISNUMBER(SEARCH("This Phrase",A1)),TRUE)
Regards
Bookmarks