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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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-...

 


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
Greg_Deckler
Super User
Super User

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


@ 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!:
The Definitive Guide to Power Query (M)

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-...

 


@ 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!:
The Definitive Guide to Power Query (M)

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.