Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
alis2063
Creator III
Creator III

Can we set rank on Second dimension in Dimension Drill Down Group

I have got the requirement  that we have shown Group of  dimension as Drill Down Group  and  set the rank on second dimension,

Suppose we have 2 dimension  here,

1)Country

2)Sales Person

We have defined the drill down group on above dimension

if  i click on country  then we  should have only Top 5 sales person.

1 Solution

Accepted Solutions
Anil_Babu_Samineni

Perhaps this?

If(GetCurrentField([Drill group Name]) = 'Country', Sum(Measure), If(Rank(Sum(Measure)) <= 5, Sum(Measure)))

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

4 Replies
sunny_talwar

May be this

If(GetCurrentField([GroupName]) = 'Country', Sum(Sales), If(Rank(Sum(Sales)) < 6, Sum(Sales)))

Anil_Babu_Samineni

Perhaps this?

If(GetCurrentField([Drill group Name]) = 'Country', Sum(Measure), If(Rank(Sum(Measure)) <= 5, Sum(Measure)))

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
alis2063
Creator III
Creator III
Author

Thanks for you help.

alis2063
Creator III
Creator III
Author

Thanks for your help