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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Numerozero
Frequent Visitor

Sum elements in a table discriminating one dimension

Hello,

 

I am looking for a way to sum elements in a table discriminating one dimension while including another dimension.
Here in this example, I want the sum of errors for the "Jean" and "Shirt" calculated separately, while the months of Jan and Feb are compensating each other :

 

  VentesForecasterror
Pantjan10010
Pantfeb01515
Shirtjan20020
Shirtfeb10100
  402525

 

Here we can see the error is only 25 units, because there is only 5 units of error for "Pant" (Jan and Feb are compensating each other), while the error for "Shirt" is 20 units.

 

Is there any way in DAX to reach this result ?

Thank you

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

 

Jihwan_Kim_1-1671476518503.png

 

Jihwan_Kim_0-1671476464626.png

 

Ventes measure: = 
CALCULATE( SUM(Data[Value]), Data[Attribute] = "Ventes")

 

Forecast measure: = 
CALCULATE( SUM(Data[Value]), Data[Attribute] = "Forecast")

 

Error measure: =
IF (
    ISINSCOPE ( 'Month'[Month] ),
    ABS ( [Ventes measure:] - [Forecast measure:] ),
    SUMX (
        DISTINCT ( Category[Category] ),
        CALCULATE (
            ABS ( [Ventes measure:] - [Forecast measure:] ),
            ALL ( 'Month'[Month No], 'Month'[Month] )
        )
    )
)

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

 

Jihwan_Kim_1-1671476518503.png

 

Jihwan_Kim_0-1671476464626.png

 

Ventes measure: = 
CALCULATE( SUM(Data[Value]), Data[Attribute] = "Ventes")

 

Forecast measure: = 
CALCULATE( SUM(Data[Value]), Data[Attribute] = "Forecast")

 

Error measure: =
IF (
    ISINSCOPE ( 'Month'[Month] ),
    ABS ( [Ventes measure:] - [Forecast measure:] ),
    SUMX (
        DISTINCT ( Category[Category] ),
        CALCULATE (
            ABS ( [Ventes measure:] - [Forecast measure:] ),
            ALL ( 'Month'[Month No], 'Month'[Month] )
        )
    )
)

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Adapted the code to my needs and it worked great. Thanks

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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