Forum Discussion

yhael1121's avatar
yhael1121
Frequent Visitor
8 years ago

ranking

Hi Team,

 

Im working on a report now that would show ranking based on the Goal Attainment per Manager. I dont quite understand how to use the RANKX. I've tried alot of examples but it doesnt work. my conculsion is that the Column that im trying to Rank is a measure. And all my measure is in a different table.

 

Below is the formula i tried.

RANK = RANKX(Ampule,calculate(([NRS GA]*.25)+([72Hr GA]*.25)+([Resolved GA]*.20)+([CPC GA]*.20)+([Transfer GA]*.10)),,ASC)

Ampule = Table for all my measures

Calculations  = formula to get the Goal Attainment im trying to Rank.

 

Please let me know if you need additional information from me.

1 Reply

  • iamprajot's avatar
    iamprajot
    Responsive Resident
    It needs a lot of corrections,
    first, put calculate(([NRS GA]*.25)+([72Hr GA]*.25)+([Resolved GA]*.20)+([CPC GA]*.20)+([Transfer GA]*.10)) into another Measure for e.g. "MyCalc" and that cannot be done the way it is now.
    the way you did it works in calculated column but not in Measure so put these column names inside SUM.
    then in ranking should contain actual table name and not the group where you created the Measures, so final measure would be RANKX(TableName,MyCalc,,ASC)