Forum Discussion

pelowski's avatar
pelowski
Helper III
8 years ago
Solved

DAX 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...   ...
  • Zubair_Muhammad's avatar
    8 years ago

    Hi pelowski

     

    Try this Column

     

    MyMax =
    CALCULATE (
        MAX ( Scores[Score] ),
        ALLEXCEPT ( Scores, Scores[Date], Scores[Court], Scores[Game] )
    )