Hi,
I’m trying to create a formula that flags (with a 1 or 0) when a certain 5 digit number code is present in either a linked record field, or a field of arrays (whatever is easiest).
For example, I was attempting:
``IF(
OR(
FIND(‘68100’,{Combined Codes & Tags (all)}),
FIND(‘41100’,{Combined Codes & Tags (all)}),
),
1,0)``
But this only works when I have two possible options of codes. I’m actually looking for the presence of 5 different codes. What is the best way to do this?
