Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
everyone, I met a problem below, I don't know why the result is in the chart,
Could anyone explain it to me?
'Flag' is not the same field as 'flag'.
And null values will not be counted so you'll never see the value 'exception'
Perhaps this does what you want: if(count({<flag={'1'}>}sales) + sum(0)=0,'exception','normal')
if(count({<flag={'1'}>}sales)=0,'exception','normal')
What are you actually trying to achieve here?
Andy
'Flag' is not the same field as 'flag'.
And null values will not be counted so you'll never see the value 'exception'
Perhaps this does what you want: if(count({<flag={'1'}>}sales) + sum(0)=0,'exception','normal')
Do you mean this?
Another way to do if without using if
Pick(RangeSum(flag, 1),'normal','exception')
I think I turned it around.... should have been this:
Pick(RangeSum(flag, 1),'exception','normal')