Forum Discussion

ThisIsIt's avatar
ThisIsIt
Frequent Visitor
3 years ago
Solved

Card from Matrix (highest value)

Hello Everyone!  Maybe you can can?  I'm trying to get create a card that shows the max value from a matrix I have (minus the totals).  I thinking I need to create a DAX to do this, but haven't been ...
  • amitchandak's avatar
    3 years ago

    ThisIsIt , a new measure like

     

    Maxx(Summarize(Table, Table[Product], Table[Country]), [Measure])

     

    or

    calculate(

    Maxx(Summarize(Table, Table[Product], Table[Country]), [Measure]), allselected())