Hello, I am trying to place a check in a box when some exact text is found within a string of words. I am looking to place a check when "TAC" is found in a string of words.
Here's the formula I am using, but its not working. No error message, but is not selecting the checkbox appropriately.
=IF(HAS([Column Name1]@row, "TAC"), 1, 0)
I was using "Contains" rather than "HAS" but that formula checked the box for all words that contained "TAC" not just the ones that matched exactly. I am stumped why HAS doesn't seem to work the same way.
Is it because "HAS" only works if the word "TAC" is the only word present? The Column Name1 is a drop down column that's populated with content like this: Location Name Medical Center TAC
I just need a box checked if and exact match for the word "TAC" is found within the text string. I tried True and False in a drop down and didn't have any luck with that either.
Thank you for any assistance you can provide!