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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
angelocecinati
Frequent Visitor

Subtotal YTD in Matrix

Hello,

 

I've created a YTD measure in a matrix and I'd like to show a subtotal summing years by category. The problem I'm facing is that the subtotal shows just the last year and does not aggregate the years.SubtotalYTD.PNG

 

Anyone has ideas about how to fix it?

Thanks in advance,

 

Angelo

1 ACCEPTED SOLUTION

The TOTALYTD function works in the year context only. Thus I created a custom mesaure has suggested in this post:

https://community.powerbi.com/t5/Desktop/Cumulative-Running-Totals-in-DAX/m-p/42608



Cumulative Value =
IF(
    MIN(Dim_Calendar[Date])<=CALCULATE(
            MAX(Dim_Calendar[Date]);
                ALL(TF));
                    CALCULATE([Valore_M];
                                FILTER(All(Dim_Calendar[Month]);Dim_Calendar[Month]<=MAX((Dim_Calendar[Month]
            ))));BLANK())

 

Now it works!

 

 

 

 

 

View solution in original post

3 REPLIES 3
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @angelocecinati,

 

Please try this:

ValueYTD =
SUMX ( sales_table, TOTALYTD ( [Value_M], 'Dim_Calendar'[Date] ) )

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

The TOTALYTD function works in the year context only. Thus I created a custom mesaure has suggested in this post:

https://community.powerbi.com/t5/Desktop/Cumulative-Running-Totals-in-DAX/m-p/42608



Cumulative Value =
IF(
    MIN(Dim_Calendar[Date])<=CALCULATE(
            MAX(Dim_Calendar[Date]);
                ALL(TF));
                    CALCULATE([Valore_M];
                                FILTER(All(Dim_Calendar[Month]);Dim_Calendar[Month]<=MAX((Dim_Calendar[Month]
            ))));BLANK())

 

Now it works!

 

 

 

 

 

Hi Yuliana,

 

Thanks for your reply. This solution makes the subtotal works properly. Unfortunatly the YTD measure does not work over the months, cause it should sum the passed period values. SubtotalYTD.PNG.

I think that if I put the sumx function in front of the measure it computes the YTD for the single row of the fact table.

If I change the order of the matrix it works!

SubtotalYTD1.PNG

Do I have to change the model behind?

Thanks again,

 

Angelo

 

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!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.