Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
ishansjain2095
Creator
Creator

How to add Number Formatting Expression in Measure?

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

Labels (2)
3 Replies
inspari_dfg
Partner - Contributor III
Partner - Contributor III

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

ishansjain2095
Creator
Creator
Author

Trying to use  this expression-> FirstSortedValue(Property,-AGGR(count( Property),Property)) which is not showing Top sale value name... Can you help!!!

ishansjain2095
Creator
Creator
Author

Can I use this-> Num(max(aggr(sum(Sales),Property )),'#.##0') without sum to get top value.....