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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
azaterol
Helper V
Helper V

Incorrect Summarize in Matrix

Hello everyone,

I have a matrix. The numbers in the matrix are correct, the sum of 2022 in the second quantity column is wrong. It doesn't sum up how it should have been. Accordingly, the 96 in the year 2021 would have to be given here, instead the 20. Can you tell me where the error is? Strangely, in the case of Quantity, which in this case is a column I created with PowerQuery, the correct result comes out, but in Quantity2, which I created, a measure is not summed up correctly.


Here is my DAX: Quantity2 = CALCULATE(SUM(APosition[Quantity),FILTER(ALL('Date'),EOMONTH([Date],0)=EOMONTH(MAX('Date'[Date]),-12 )))

 

azaterol_0-1671200156509.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @azaterol ,

I updated your sample pbix file(see the attachment), please create another new measure as below to replace the measure [previous year] onto the matrix:

Measure = 
SUMX (
    GROUPBY ( 'Date', 'Date'[Year], 'Date'[MonthNameShort] ),
    [previous year]
)

yingyinr_0-1671441997027.png

Best Regards

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@azaterol , Try measure like

 

Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-1,Year))


Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),SAMEPERIODLASTYEAR('Date'[Date]))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hello @amitchandak ,

this is not working. I uploaded an example. As you can see, 3 is entered as the sum for previous year. For 2022 in the previous year column there should be a 4 and not a 3. For 2021 previous year there has to be an 18. And at the bottom as a total is also 3, here must be 22. Quantity is a column. previous year is a measure.

 

Here the measure: 

previous year = CALCULATE(SUM('Order'[Quantity]),FILTER(ALL('Date'),EOMONTH([Date],0)=EOMONTH(MAX('Date'[Date]),-12)))

 

azaterol_0-1671304690273.png

 

How it should be:

 

azaterol_1-1671304794956.png

 

Can you help me here?

 

https://easyupload.io/4bdhi0

 

 

 

 

 

Anonymous
Not applicable

Hi @azaterol ,

I updated your sample pbix file(see the attachment), please create another new measure as below to replace the measure [previous year] onto the matrix:

Measure = 
SUMX (
    GROUPBY ( 'Date', 'Date'[Year], 'Date'[MonthNameShort] ),
    [previous year]
)

yingyinr_0-1671441997027.png

Best Regards

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.