Forum Discussion
Varun51
6 years agoRegular Visitor
MAXX DAX Function Help
HI , I am trying to get Max of sales for each category in a cross tab .below is the sample data i tried using MAXX but no luck any help would be highly appreciated Sample Need to ca...
- 6 years ago
Hi Varun51 ,
Try this:
CALCULATE( MAX(table[Sales]), ALLEXCEPT( talbe, talbe[Category] ) )Or this:
Measure = MAXX( SUMMARIZE( talbe, talbe[Category], "Sales", MAX(table[Sales]) ), [Sales] )Many methods can be used to find the maximum value in groups.
Best regards,
Lionel ChenIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-lionel-msft
Community Support
6 years agoHi Varun51 ,
Try this:
CALCULATE(
MAX(table[Sales]),
ALLEXCEPT(
talbe,
talbe[Category]
)
)Or this:
Measure =
MAXX(
SUMMARIZE(
talbe,
talbe[Category],
"Sales", MAX(table[Sales])
),
[Sales]
)Many methods can be used to find the maximum value in groups.
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.