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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
tmumaw
Specialist II
Specialist II

Calculated Dimension

I have this calculated dimension and I am interested in only ranked values between 2 and 10.  I'm using this to get my top 10.  Is there a way of only getting 2 - 10?

=if(aggr(Rank(Count(DISTINCT([Requisition]))),[SF_Job]) < 11,[SF_Job])

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar

May be this

=Aggr(If(Rank(Count(DISTINCT [Requisition])) > 1 and Rank(Count(DISTINCT [Requisition])) < 11, [SF_Job]), [SF_Job])

View solution in original post

3 Replies
sunny_talwar

May be this

=Aggr(If(Rank(Count(DISTINCT [Requisition])) > 1 and Rank(Count(DISTINCT [Requisition])) < 11, [SF_Job]), [SF_Job])
tmumaw
Specialist II
Specialist II
Author

Thanks Sunny that worked.  Do you know of a way to start the ranking at 2 vs. 1? 

 

sunny_talwar

May be just add 1 to the Rank?

RangeSum(Rank(...), 1)

or

Rank(...) + 1