I need a formula to check if there is exact matching for multiple select field when values can have comma. Here is a sample multiple select I can have:
a
b
c
a,b
I need to check if users selection is exactly 'c' and 'a,b'. All solutions I found (like using FIND) are not working with comma.
Best answer by Sho
Ah, I see why the FIND function is not working. Multi-select is difficult to process because it's just text.
If you remove the LEN, it will contain "c" and "a,b" and will match any other choice. OK if not a problem!
@Sho you are right, this is not exact matching. Your version was correct, I just had typo on my side. Will do some more tests and will accept as solution.