IN for multiple values

I can now use IN for searching ONE value.

Like

IN (Value, LIST())

Can this be done :

IN({Value1, Value2, Value3…}, LIST())

?

Solved Solved
0 10 616
1 ACCEPTED SOLUTION

Please try something like below

COUNT(INTERSECT(LISTA , LIST B)) >0

Or following

COUNT(INTERSECT({A, B, C}, {A, B, C, D, E, F}))>0
in a constraint or Y/N type column or filter or condition type of setting

Or something like below if your using the statement in say text type column

IF( COUNT(INTERSECT({A, B, C}, {A, B, C, D, E, F}))>0 , “Whatever message you wish on statement being true”, “Whatever message you wish on statement being false”)

Edit: Minor correction in typo errors.

View solution in original post

10 REPLIES 10
Top Labels in this Space