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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Does anyone know a dax expression i could use to show the max category in the screen shot below. For example, a row that shows brother for cosco,dad for walmart, and cousin for samsclub?
Solved! Go to Solution.
See the attached file.
First I normalized your data with Power Query so it was more like a database.
Then I used the following measure:
Max Client Spending =
VAR BigSpending = MAX(Receipts[Spending])
RETURN
CALCULATE(
MAX(Receipts[Client]),
FILTER(Receipts,[Max Spending] = BigSpending)
)I also had a Max Spending measure that is referenced in the above, which is simply:
Max Spending = MAX(Receipts[Spending])
The end result is a table that looks like this, which shows the relative, their maximum spending amount, and where it was at.
The PBIX file is here.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingSee the attached file.
First I normalized your data with Power Query so it was more like a database.
Then I used the following measure:
Max Client Spending =
VAR BigSpending = MAX(Receipts[Spending])
RETURN
CALCULATE(
MAX(Receipts[Client]),
FILTER(Receipts,[Max Spending] = BigSpending)
)I also had a Max Spending measure that is referenced in the above, which is simply:
Max Spending = MAX(Receipts[Spending])
The end result is a table that looks like this, which shows the relative, their maximum spending amount, and where it was at.
The PBIX file is here.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingHi @Anonymous ,
We can use the following DAX query:
Measure =
CALCULATE (
MIN ( Table1[Client] ),
FILTER (
ALL ( Table1 ),
Table1[data]
= CALCULATE (
MAX ( Table1[data] ),
FILTER ( ALL ( Table1 ), Table1[People] = MIN ( Table1[People] ) )
)
&& Table1[People] = MIN ( Table1[People] )
)
)The result will like below:
Best Regards,
Teige
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 53 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 122 | |
| 108 | |
| 44 | |
| 32 | |
| 26 |