Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
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 calculate max per each category here below case cateogry X should get 70 and category Y should get 200 in Crosstab
Category Year Sales
X 1998 50
X 1999 70
Y 1998 100
Y 1999 200
Thanks
Varun
Solved! Go to Solution.
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 Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
| User | Count |
|---|---|
| 56 | |
| 41 | |
| 38 | |
| 21 | |
| 21 |
| User | Count |
|---|---|
| 141 | |
| 103 | |
| 63 | |
| 36 | |
| 35 |