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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
bluetronics
Helper III
Helper III

Max by products and year

Hello,

I want to get the max value by produts and year from the table below:

a.gif

I can get Max value of products and date when I use quick measures like below:

b.gif it shows Max of every single data.

But I would like to see the result the max of products by year like the table below:

c.gif

Can I get the support how I can get the result what I want to get?

Thanks in advance.

 

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @bluetronics  ,

Here are the steps you can follow:

1. Create calculated column.

Year = YEAR('Table'[Date])
sum =
CALCULATE(SUM('Table'[Qty]),FILTER(ALL('Table'),'Table'[Product]=EARLIER('Table'[Product])&&'Table'[Year]=EARLIER('Table'[Year])))

2. Create calculated table.

Table 2 = SUMMARIZE('Table','Table'[Product],"Max",CALCULATE(MAX('Table'[sum]),FILTER('Table','Table'[Year]='Table'[Year])))

3. Result.

v-yangliu-msft_0-1606981357729.jpeg

You can downloaded PBIX file from here.

 

Best Regards,

Liu Yang

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

View solution in original post

5 REPLIES 5
v-yangliu-msft
Community Support
Community Support

Hi  @bluetronics  ,

Here are the steps you can follow:

1. Create calculated column.

Year = YEAR('Table'[Date])
sum =
CALCULATE(SUM('Table'[Qty]),FILTER(ALL('Table'),'Table'[Product]=EARLIER('Table'[Product])&&'Table'[Year]=EARLIER('Table'[Year])))

2. Create calculated table.

Table 2 = SUMMARIZE('Table','Table'[Product],"Max",CALCULATE(MAX('Table'[sum]),FILTER('Table','Table'[Year]='Table'[Year])))

3. Result.

v-yangliu-msft_0-1606981357729.jpeg

You can downloaded PBIX file from here.

 

Best Regards,

Liu Yang

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

Thanks a lot! it's very clear and works well. 👍

amitchandak
Super User
Super User

@bluetronics , I do not see 15 for A, It can be that last value for A

 

Try a formula like

calculate(max(Table[Qty]), filter(Table, Table[Date] = calculate(max(Table[Date]), allexcept(Table, Table[Product]))))

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Pls. see the result  and it does not work properly.  thereis an error on a formula.

a.gif

I tried but I don't think it works. 😞

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

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

Top Kudoed Authors