Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register 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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
80 | |
76 | |
61 | |
36 | |
32 |
User | Count |
---|---|
91 | |
60 | |
59 | |
49 | |
45 |