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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
San_eve
Regular Visitor

Help with Rank

I have data simillar to below table. 

 

CategorypairValue
AB10
AC15
BD20
BA25

 

I need a rank column simillar ranking  as per category and value. Below O/p.

CategorypairValueRank
AB101
AC152
BD252
BA201

I have tried Rankx but I am not getting the expected o/p. Any help is appreciated. Thanks.

1 ACCEPTED SOLUTION
DOLEARY85
Super User
Super User

Hi,

 

try this in a calculated column:

 

Column = RANKX(
    FILTER('Table','Table'[Category] = EARLIER('Table'[Category])),
    'Table'[Value],,ASC
)
 
DOLEARY85_0-1687504314987.png

 

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

View solution in original post

2 REPLIES 2
San_eve
Regular Visitor

Works!!! Thanks a lot.

DOLEARY85
Super User
Super User

Hi,

 

try this in a calculated column:

 

Column = RANKX(
    FILTER('Table','Table'[Category] = EARLIER('Table'[Category])),
    'Table'[Value],,ASC
)
 
DOLEARY85_0-1687504314987.png

 

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

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.