Forum Discussion
ThisIsIt
3 years agoFrequent Visitor
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 ...
- 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())
amitchandak
3 years agoSuper User
ThisIsIt , a new measure like
Maxx(Summarize(Table, Table[Product], Table[Country]), [Measure])
or
calculate(
Maxx(Summarize(Table, Table[Product], Table[Country]), [Measure]), allselected())
ThisIsIt
3 years agoFrequent Visitor
Thank you very much! The "Maxx(Summarize(Table, Table[Product], Table[Country]), [Measure])" solution worked for me. Much appreciated!