Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
LesJean
Contributor III
Contributor III

Top 10 in a table

Hello everyone,

Here's a screenshot of the table chart I'm currently working with:

sssss.png

So I'm trying to make a table that displays only the top 10 items where the quantity is the highest. At the moment, the table contains 134 items and these 134 items are displayed in the table chart. 

Browsing this forum, I found a method using the "Limitation" functionality of a table chart. But, for some reason, the Limitation function is greyed out for me. Here's a screenshot:

aaaaaaaaaaaaaaaaaa.png

So I'm wondering if there's a workaround to limit the number of items displayed using a function...I've been playing with the Rank() function with something like this...

If(Rank(Quantity) < 10, Item)

But I couldn't quite make it work as of now.

Any help would be greatly appreciated!

Thank you,

LesJean

1 Solution

Accepted Solutions
Anil_Babu_Samineni

Perhaps this?

If(Aggr(Rank(Quantity), Item) < 10, Item)

 

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

2 Replies
Anil_Babu_Samineni

Perhaps this?

If(Aggr(Rank(Quantity), Item) < 10, Item)

 

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
LesJean
Contributor III
Contributor III
Author

This works! Thank you very much!