Forum Discussion

devika's avatar
devika
Icon for Helper II rankHelper II
5 years ago
Solved

If and multiple conditions

I'm creating a column with 'And' ,'Multiple Conditions'   Co = IF(and[RRR]=1, ([Highest]="Rer" or [Highest]="Con" or [Highest]="EC") then 1 else 0)   I worked out for single conditon but trying ...
  • littlemojopuppy's avatar
    5 years ago

    Hi.  Try this...

     

    IF(
    	AND(
    		[RRR] = 1,
    		[Highest] IN {"Rer", "Con", "EC"}
    	),
    	1,
    	0
    )