Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

How to get the value of Column A for the row that has the highest value in column B ?

I have a database of Premier League matches for 20 seasons, along with the matchday and the point total for each team in every match, so I wanna create a "Season" table out of it, and add a "Champion" calculated column that gives you the value of "HomeTeam" or "AwayTeam" that has the highest value out of both "HTPointsSeason" and "ATPointsSeason" in MatchWeek 38 rows (basically the team that has the most points after the last match of the season, which is made a little more complicated by the fact that teams are spread over HomeTeam and AwayTeam, so if the highest value is in the ATPS column, I gotta get the value of that row in AwayTeam, and respectively for HTPS and HomeTeam).

 

Is there any way to both get the value of the row in another column AND get the row and the column that have the highest value?

 

Here's the data:

 

points.pngteams.png

 

(Also, if there's a way to do this, how to handle tie breakers in Power BI ? As in if there's a draw on points at the end of the season like in 2011/12, how to make it so it chooses the team with the highest goal difference among the teams tied for most points ?)

 

Sorry if this seems obvious, but I'm still learning and I like being confronted with these learning opportunities.

1 ACCEPTED SOLUTION

OK, I think I am starting to follow. You want a multi-column aggregation. Luckily, I invented one quite a while ago. 

 

https://community.powerbi.com/t5/Quick-Measures-Gallery/Multi-Column-Aggregations-MC-Aggregations/m-...

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
Greg_Deckler
Community Champion
Community Champion

Could you post your data as text and provide expected result? Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

@Greg_Deckler 

HomeTeamAwayTeam
Manchester UnitedLeicester City
West Ham UtdLiverpool FC
Aston VillaArsenal

 

HomeTeamPointsAwayTeamPoints
8159
4694
3765

 

In this simplified example, the script would look at the HTP and ATP columns, see that the max in both of them is 94, so it'd return the value associated with it, which is Liverpool (1st scan for the highest value in both (94), then get the column it's in to know if we should look in HomeTeam or AwayTeam (it's in ATP so AT), and the row to know which value to return (2nd row, so Liverpool)).

OK, I think I am starting to follow. You want a multi-column aggregation. Luckily, I invented one quite a while ago. 

 

https://community.powerbi.com/t5/Quick-Measures-Gallery/Multi-Column-Aggregations-MC-Aggregations/m-...

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
amitchandak
Super User
Super User

Not very clear, but earlier can help

Max value = maxx(filter(table,table[team] =earlier(table[team]) && table[A] =earlier(table[A])),table[B])

 

when you have use date

Last Date Time = maxx(filter(table,table[Date Time]<earlier(table[Date Time])),table[Date Time])

 

You can add/remove conditions at per need

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors