hi all
I am trying to use the "in" function to search for a string in a list of strings (e.g.: search for 'a' in ('a','b','c')) and it works if I hard code the values, but does not work if the values are stored in a variable (column).
Let's say the data looks like this:
[Search] | [List]
'a' | 'a','b','c'
If I configure the formula as follows --> [Search] in ('a','b','c') --> it works, but if I do --> [Search] in [List] --> it does not work (tried with and without the " ' "). Why is that?
p.s.: I know I could use contains([List],[Search]), but I am interested in why the 'in' function does not work...
Thank you.