March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello,
I am trying to create a measure that compares for every row in the table if Column2 = Max then 1 else 0.
This is my try :
Best Score =
VAR _Max = Max('Table'[Column2])
Return
Maxx(FILTER('Table','Table'[Column2] = _Max),1)
I should 0 for a, b and e and 1 for c and d.
Any help is appreciated, thank you
Solved! Go to Solution.
Best score =
VAR MaxValue =
CALCULATE ( MAX ( 'Table'[Column2] ), REMOVEFILTERS ( 'Table' ) )
RETURN
IF ( SELECTEDVALUE ( 'Table'[Column2] ) = MaxValue, 1, 0 )
Best score =
VAR MaxValue =
CALCULATE ( MAX ( 'Table'[Column2] ), REMOVEFILTERS ( 'Table' ) )
RETURN
IF ( SELECTEDVALUE ( 'Table'[Column2] ) = MaxValue, 1, 0 )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
18 | |
16 | |
13 |