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
lazurens2
Frequent Visitor

A DAX Measure to flag the max value (best score)

Hello, 

 

I am trying to create a measure that compares for every row in the table if Column2 = Max then 1 else 0. 

 

lazurens2_0-1663745055336.png

 

This is my try : 

 

 

 

Best Score = 
VAR _Max = Max('Table'[Column2])
Return 
    Maxx(FILTER('Table','Table'[Column2] = _Max),1)

 

 

 

 

lazurens2_1-1663746024740.png

I should 0 for a, b and e and 1 for c and d.

 

Any help is appreciated, thank you

 

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Best score =
VAR MaxValue =
    CALCULATE ( MAX ( 'Table'[Column2] ), REMOVEFILTERS ( 'Table' ) )
RETURN
    IF ( SELECTEDVALUE ( 'Table'[Column2] ) = MaxValue, 1, 0 )

View solution in original post

1 REPLY 1
johnt75
Super User
Super User

Best score =
VAR MaxValue =
    CALCULATE ( MAX ( 'Table'[Column2] ), REMOVEFILTERS ( 'Table' ) )
RETURN
    IF ( SELECTEDVALUE ( 'Table'[Column2] ) = MaxValue, 1, 0 )

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.