Flag rows where a cell contains a given word, anywhere in the text.
Copy this formula
=IF(ISNUMBER(SEARCH("urgent", A2)), "Yes", "No")SEARCH returns the position of the word if present (a number) or an error if not. ISNUMBER turns that into TRUE/FALSE, and IF returns your labels. SEARCH is case-insensitive; use FIND for case-sensitive matching.
=IF(ISNUMBER(SEARCH("paid", B2)), "✓", "")→✓Marks rows whose status contains "paid".
Compare directly: =IF(A2="urgent", "Yes", "No"). SEARCH is for partial/contains checks.
Need a formula for your own data?
Describe what you want in plain language and let ExcelGPT write, explain, and verify the formula — free to start, no plugin.