Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I'm trying to create a calculated dimension.
I want to create an if statement that shows if an alphanumeric first character is X,Y or Z show O.
=if(left(Dimension,1)='Y',0,1)
This works, but when I try with all the letters I get an error: =if(left(Dimension,1)=('Y','Z','X'),0,1)
Thank you in advance
if(Match(Left(Dimension,1),'X','Y','Z'),0,1) should work. You could also use three if(conditoin1 OR Condition2 OR Condition3,0,1)
if(Match(Left(Dimension,1),'X','Y','Z'),0,1) should work. You could also use three if(conditoin1 OR Condition2 OR Condition3,0,1)