Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I'm trying to create a dimension like "if ((min(A,B)-C) > D, "N", "Y")". Please help! Thanks!!
Try with single quotes, like:
=if(RangeMin(A,B)-C > D, 'N', 'Y')
Hi @younlim91
Try like this
=if(RangeMin(A,B)-C > D, "N", "Y")
It's giving me "Error in Expression"
are you creating the dimension in a chart or in the data model?
I'm creating dimension in a chart
It works! thank you so much!