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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Nathan__Mox
Helper I
Helper I

Power BI Dax Find max of a column by supplier and year.

Hey all,

 

Im trying to make a new column with the max value of another column by supplier and year.

SupplierYearAmountMax
A202250007000
A202220007000
A202270007000
A202340004000
A202320004000
B202250006000
B202260006000
B202220006000
B202315001500

 

Hope this makes sense, let me know if you need anymore information.

 

Any help would be very much appreciated.

 

Thanks 

Nathan 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Nathan__Mox , A new column in DAX

 

max=  maxx(filter(Table, [Supplier] = earlier( [Supplier]) && [Year] = earlier( [Year]) ), [Amount])

 

Power BI DAX- Earlier, I should have known Earlier: https://youtu.be/CVW6YwvHHi8

View solution in original post

2 REPLIES 2
v-zhangti
Community Support
Community Support

Hi, @Nathan__Mox 

 

You can try the following methods.

Column = CALCULATE(MAX('Table'[Amount]),ALLEXCEPT('Table','Table'[Supplier],'Table'[Year]))

Or

Column 2 = CALCULATE(MAX('Table'[Amount]),FILTER('Table',[Supplier]=EARLIER('Table'[Supplier])&&[Year]=EARLIER('Table'[Year])))

vzhangti_0-1675821999393.png

Measure:

Measure = CALCULATE(MAX('Table'[Amount]),ALLEXCEPT('Table','Table'[Supplier],'Table'[Year]))

Or

Measure 2 = CALCULATE(MAX('Table'[Amount]),FILTER('Table',[Supplier]=SELECTEDVALUE('Table'[Supplier])&&[Year]=SELECTEDVALUE('Table'[Year])))

vzhangti_1-1675822125449.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Nathan__Mox , A new column in DAX

 

max=  maxx(filter(Table, [Supplier] = earlier( [Supplier]) && [Year] = earlier( [Year]) ), [Amount])

 

Power BI DAX- Earlier, I should have known Earlier: https://youtu.be/CVW6YwvHHi8

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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