Discussion Board for collaboration related to QlikView App Development.
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')
It's giving me "Error in Expression"
Try with single quotes, like:
=if(RangeMin(A,B)-C > D, 'N', 'Y')
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!