Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Rymatt830
Helper I
Helper I

RANKX Help

I can't seem to get the RANKX function to work. I have searched what I think is every other post and tried all the solutions but nothing has worked. I am trying to return the annual rank by peer group for each organization based on audit data. There are approximately 250 organizations and audit data for each organization for each year from 2010-2014. The organizations have a unique ID and all belong to a peer group (PeerGroupAC). Here's the data:

 

e.PNGI have tried several variations of the formula:

  • Rank = RANKX(ALL(tblOrganization[ID]), tblFinancialAudit[CurrentAssets])
  • Rank = RANKX(ALLSELECTED(tblOrganization[ID]), tblFinancialAudit[CurrentAssets])
  • Rank = RANKX(ALL(tblOrganization[ID]), SUM(tblFinancialAudit[CurrentAssets]))
  • etc.

I also tried to create a measure, SumCurrentAssets = SUM(CurrentAssets), and reference it in the RANKX formulas.

  • SumCurrentAssets = SUM(CurrentAssets)
  • Rank = RANKX(ALL(tblOrganization[ID]), [SumCurrentAssets])

At this point, nothing has worked and I would love some expert advice, please! Thanks!

 

1 ACCEPTED SOLUTION

Ranking =
RANKX (
    FILTER (
        ALL ( tblFinancialAudit );
        tblFinancialAudit[year] = EARLIER ( tblFinancialAudit[Year] )
            && tblFinancialAudit[PeerGroup] = EARLIER ( tblFinancialAudit[PeerGroup] )
    );
    tblFinancialAudit[CurrentAssets];
    ;
    ASC;
    DENSE
)




Lima - Peru

View solution in original post

7 REPLIES 7
Vvelarde
Community Champion
Community Champion

In table tblFinancialAudit: Create a calculated column:

 

Rank = RANKX(FILTER(ALL(tblFinancialAudit);tblFinancialAudit[year]=EARLIER(tblFinancialAudit[Year]));tblFinancialAudit[CurrentAssets];;ASC;Dense)




Lima - Peru

Thank you, Vvelarde. I implemented your suggestion (except I replaced ";" with ",") but it's not recognizing the PeerGroupAC field. There are only 21 organizations in that Peer Group, but the ranks appear to be based on all of the organizations, not just the one's in the selected group (see image)

 

Update.PNG

 

 

Ranking =
RANKX (
    FILTER (
        ALL ( tblFinancialAudit );
        tblFinancialAudit[year] = EARLIER ( tblFinancialAudit[Year] )
            && tblFinancialAudit[PeerGroup] = EARLIER ( tblFinancialAudit[PeerGroup] )
    );
    tblFinancialAudit[CurrentAssets];
    ;
    ASC;
    DENSE
)




Lima - Peru

Thank you again, Vvelarde! Your solution works great!

Sean
Community Champion
Community Champion

@Rymatt830 Check which [ID] column you are using to build your Table Visualization?

 

If your Ranking Measure look like this...

 

you should use tblOrganization[ID] to build your Table NOT tblFinancialAudit[ID]

 

Rank =
RANKX (
    ALL ( tblOrganization[ID] ),
    CALCULATE ( SUM ( tblFinancialAudit[CurrentAssets] ) )
)

 

I hope this resolves it! Smiley Happy

Anonymous
Not applicable

Hello @Vvelarde,

 

I'm using the same formula for my Rank measure and I don't know why but it doesn't seem to work properly..

The rank starts from 2.. look

 

 http://prntscr.com/e5m25q

 

 (I don't know why I can not send the screenshot as a picutre in the post...)

 

Thanks

Thanks for the reply. I tried that solution initially and it does not work.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.