Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Rate for best performers as a subset of a larger group

I am doing a line graph showing the rate for all facilites vs. the top 3 best (lowest rate) performers.  I can't seem to figure this out so i would appreicate some help.

HospitalQuarterNumDenom

A1

q1370
B2

q1

485
C3

q1

390
D4

q1

5109
E5

q1

265

To show the rate for all facilities i simply have the expression =sum(<1 > Num)/sum(<1> Denom)

What i can't figure out is the expression for the combined rate of the best 3 facilities( with the lowest individual rate)

Thanks folks... I appreciate any help you can give me.!

4 Replies
MayilVahanan

Hi

     You can use rank() function to get  it.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
bgerchikov
Partner - Creator III
Partner - Creator III

Hi,

Try expression below:

=IF(AGGR(RANK( sum(Num)/sum(Denom)), Drugs) <= 3, sum(Num)/sum(Denom))

Thanks!

Not applicable
Author

ok i follow what you are doing till you put in "Drugs"  I don't understand that it is not a field that i have available.

I do appreciate the attempt to help...  my goal is a line chart with two lines... one line is just the rate for all facilities and the other line is the rate for the top 3 best facilities.

Thanks,

bgerchikov
Partner - Creator III
Partner - Creator III

Please review attachment:

=IF(AGGR(RANK( sum(Num)/sum(Denom)), Hospital) <= 3, sum(Num)/sum(Denom))

Hope it helps.