Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
VaishnaviMogal2
Contributor III
Contributor III

Show data of Top 10 values

Hi,

I want to display data of top 10 VIN. As all fields in table are dimensions the limitation feature in disabled in chart. how can i achieve this using set expression or other ways.

thank you.

Labels (5)
2 Replies
Antoine04
Partner - Creator III
Partner - Creator III

Hello,

Can you please share a sample of your DATA ?

One of the way you can try is to use the function Rank() as a mesure.

Regards

Antoine

BrunPierre
Partner - Master
Partner - Master

Something like this?

=If(Aggr(Rank(Sum(Value)), VIN) <= 10, VIN)