1

I am trying to have the cell populate if the word CAT|I is in a different cell. I am using the following function:

=IF(ISNUMBER(SEARCH("CAT|I,",F12)),"CAT I","NO")

Unfortunately it is showing up CAT I for all my CAT|II and CAT|III cells but NO for my CAT|I.

2
  • Please post some example data. Without knowing how your data exactly looks like, it's impossible to answer. Commented Feb 11, 2022 at 17:36
  • You should provide the sample file or screenshot about this problem.
    – Lee
    Commented Feb 15, 2022 at 9:07

1 Answer 1

1

If you remove that comma it seems to work as intended:

=IF(ISNUMBER(SEARCH("CAT|I",F12)),"CAT I","NO")

enter image description here

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .