Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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 )
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
13 | |
11 | |
10 | |
10 |