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
Anonymous
Not applicable

Rankx function on two parameters

Untitled.png

 

 

hello ,
i have use some measure for _Actual Cost & contribution Rank bottom that is cantains rank i need to find only top 5 rank but
i was use option wich is in field that give me only one row,,


_Actual cost sum = SUM(YTD2[Actual Cost])


_Actual Contribution avg = AVERAGE(YTD2[Actual Contribution %])

 

_Actual Cost & contribution Rank bottom = RANKX(
ALLSELECTED( YTD2 ),
[_Actual Contribution avg],,ASC
) + DIVIDE (
RANKX ( ALLSELECTED(YTD2), [_Actual cost sum],,DESC),
( COUNTROWS ( ALL ( YTD2 ) ) + 1 )
)

this is some what i use 

regards 
pooja

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

Hi Poojad1,

 

To achieve your requirement, please use DAX formula below:

 _Actual Cost & contribution Rank bottom =

var temp = RANKX(

ALLSELECTED( YTD2 ),

[_Actual Contribution avg],,ASC

) + DIVIDE (

RANKX ( ALLSELECTED(YTD2), [_Actual cost sum],,DESC),

( COUNTROWS ( ALL ( YTD2 ) ) + 1 )

)

return

IF(temp < 6, temp, BLANK())

 

 1.PNG

You can refer to PBIX here:

https://www.dropbox.com/s/hzt2jwi9tt4pexl/For%20Poojad1.pbix?dl=0

 

Regards,

Jimmy Tao

View solution in original post

1 REPLY 1
v-yuta-msft
Community Support
Community Support

Hi Poojad1,

 

To achieve your requirement, please use DAX formula below:

 _Actual Cost & contribution Rank bottom =

var temp = RANKX(

ALLSELECTED( YTD2 ),

[_Actual Contribution avg],,ASC

) + DIVIDE (

RANKX ( ALLSELECTED(YTD2), [_Actual cost sum],,DESC),

( COUNTROWS ( ALL ( YTD2 ) ) + 1 )

)

return

IF(temp < 6, temp, BLANK())

 

 1.PNG

You can refer to PBIX here:

https://www.dropbox.com/s/hzt2jwi9tt4pexl/For%20Poojad1.pbix?dl=0

 

Regards,

Jimmy Tao

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.