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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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 II
Partner - Master II

Something like this?

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