I have a column of cells with narratives in them. I need to flag the ones that contain specific words.
Currently, I am using
This works fine for catching everything with "dog," but it also "dogged" and "doggerel."
How do I tweak the formula so that it only catches "dog" and not words that contain that letter combination.
Thanks!
Currently, I am using
Code:
=IF(COUNT(SEARCH("dog",M2)),"Y","")
This works fine for catching everything with "dog," but it also "dogged" and "doggerel."
How do I tweak the formula so that it only catches "dog" and not words that contain that letter combination.
Thanks!