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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.