Forum Discussion
davehus
8 years agoMemorable Member
Conditional Column based on 2 columns
Hi, I want to create a conditional column based on 2 columns. I can use AND OR fine, however is there an inlist equivalent? Example if [C1] = 201 And [C2] InList (105,106) then [Value1] Else...
- 8 years ago
Something like
=if(c1 = 201 && c2 in {105,106), [Value1],[Value2])
That should work