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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
michaelskj8
Regular Visitor

Get highest value per group

Hi all. Hope you are able to help me.

 

I have read a similar post about filtering on the highest value per group, but this unfortunately does not solve my issue. Here goes.:

 

I have a data table like the one below. I need to find the file related to the newest year, and get all years associated with that file filtered so they are the only ones left in the data table.

 

File name         Customer number       Year

A                      1000                             2012

A                      1000                             2013

A                      1000                             2014

B                      1000                             2012

B                      1000                             2013

B                      1000                             2014

B                      1000                             2015

 

In this case, file "B" is the one i want all the rows for, since 2015 is the newest year. I.e. wanted result is:

B                      1000                             2012

B                      1000                             2013

B                      1000                             2014

B                      1000                             2015

 

 

How do I do this?

 

PS: I have many thousand rows

 

BR Michael

3 REPLIES 3
Greg_Deckler
Super User
Super User

I'm thinking:

 

Customer = 
VAR __max = MAXX('Table',[Year])
VAR __filemax = MAXX(FILTER('Table',[Year]=__max),[File name])
VAR __table = FILTER('Table',[File name]=__filemax)
RETURN
__table

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

Do I create a new table or column?

Will give it a shot and come back 🙂

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.