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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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.


Go to My LinkedIn Page


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.


Go to My LinkedIn Page


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

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors