Forum Discussion
pelowski
Helper III
8 years agoDAX Formula - Return a calculated column MAX after grouping multiple other columns
I know this should be easy but despite trying and trying different options and searching for a couple hours, I can't get this to work. As an example, I have scores in a table like this... ...
- 8 years ago
Hi pelowski
Try this Column
MyMax = CALCULATE ( MAX ( Scores[Score] ), ALLEXCEPT ( Scores, Scores[Date], Scores[Court], Scores[Game] ) )
Zubair_Muhammad
Community Champion
8 years agoHi pelowski
Try this Column
MyMax =
CALCULATE (
MAX ( Scores[Score] ),
ALLEXCEPT ( Scores, Scores[Date], Scores[Court], Scores[Game] )
)Zubair_Muhammad
Community Champion
8 years ago- pelowski8 years ago
Helper III
Yes! That did it! Thank you!