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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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]))))

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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