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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
ukeasyproj
Helper II
Helper II

need help with rankx

Hey I am wondering if rankx can be used in the following case:

 

Basically I want to see the top 3 projects with the most logged hours for a given portfolio:

 

the final result should look like this:

 

Portfolio  | Project | Hours Logged

---------------------------------------

Portfolio 1 |  project 1 | 10000

---------------------------------------

Portfolio 1 |  project 8 | 5000

---------------------------------------

Portfolio 1 |  project 9 | 2000

---------------------------------------

Portfolio 2 |  project 0 | 15000

---------------------------------------

Portfolio 2 |  project 3 | 7000

---------------------------------------

Portfolio 2 |  project 11 | 2000

---------------------------------------

1 ACCEPTED SOLUTION
Vvelarde
Community Champion
Community Champion

@ukeasyproj

 

Use this dax:

 

Ranking =
RANKX (
    ALLEXCEPT ( Table1, Table1[Portfolio] ),
    CALCULATE ( SUM ( Table1[HoursLogged] ) ),
    ,
    DESC,
    DENSE
)

In visual level filter select

 

Sin título.png




Lima - Peru

View solution in original post

1 REPLY 1
Vvelarde
Community Champion
Community Champion

@ukeasyproj

 

Use this dax:

 

Ranking =
RANKX (
    ALLEXCEPT ( Table1, Table1[Portfolio] ),
    CALCULATE ( SUM ( Table1[HoursLogged] ) ),
    ,
    DESC,
    DENSE
)

In visual level filter select

 

Sin título.png




Lima - Peru

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors