Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am trying to use this expression -> "max(aggr(sum(Sales),Property ))" to find out top sale with that property but facing is problem with number formatting which isn't working due to aggr function I assume.
Can anyone help me with expression.
Regards,
ISJ
You can use this:
Num(max(aggr(sum(Sales),Property )),'#.##0')
for at format like this: 2.000.000
But you should still be able to use the standard number formatting option under the measure
Trying to use this expression-> FirstSortedValue(Property,-AGGR(count( Property),Property)) which is not showing Top sale value name... Can you help!!!
Can I use this-> Num(max(aggr(sum(Sales),Property )),'#.##0') without sum to get top value.....