Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Top 10 above target

I'm trying to show the top ten in one chart and the bottom ten in another but for some reason the top ten shows minus amounts.  I've tried using dimension limits to show only first 10 and show only values that are greater than 1 but both are showing -.

Any ideas how I can do this?

CC

1 Reply
devarasu07
Master II
Master II

Hi,

Try like below for Top 10

1) Using Set Analysis in Expression

Dimension = Product

Expression

Sum({<Product = {"=aggr(Rank(Sum(Sales),4),Product)<=10"}>} Sales)

2) Using Calculated Dimension

Dimension = use cal.dimension

=aggr(if(Rank(sum(Sales),4)<=10,Rank(sum(Sales))),Product)

for bottom 10

=aggr(if(Rank(-sum(Sales),4)<=10,Rank(-sum(Sales))),Product)

Thanks,Deva