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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
domden
New Member

Total SUM in Matrix wrong

Hello there! I hope you guys can help me.

I have a problem with the total sum under my matrix in pbi.

 

I got 2 different ordernumbers. Order 1 has 4 order items; Order 2 has 1 item.

In Order 1, I get 23 subitems. thats why my warehouse software is duplicating the order items. (see below)

total_sum_Pbi_2.png

 

I want to know how many Items are in each order. Im using distinct count.

The count is correkt, but the total is wrong. (see below)

 

total_sum_Pbi.png

 

I have searched a lot now, but didnt find something useful.

Pls help 🙂

thx.

1 ACCEPTED SOLUTION
BITomS
Resolver III
Resolver III

Hi @domden,

 

To achieve this, you can use one measure that uses a variable to summarize the data. Help on variables here: https://docs.microsoft.com/en-us/dax/best-practices/dax-variables

 

Measure = VAR _Tbl = SUMMARIZE('TableName',[OrderNumber],"Count",DISTINCTCOUNT([OrderItem]))

RETURN

sumx(_Tbl,[Count])

 

The variable is doing the distinct count per category in a table and then the sumx is referencing the variable table to sum the distinct counts together. Hope this helps!

View solution in original post

1 REPLY 1
BITomS
Resolver III
Resolver III

Hi @domden,

 

To achieve this, you can use one measure that uses a variable to summarize the data. Help on variables here: https://docs.microsoft.com/en-us/dax/best-practices/dax-variables

 

Measure = VAR _Tbl = SUMMARIZE('TableName',[OrderNumber],"Count",DISTINCTCOUNT([OrderItem]))

RETURN

sumx(_Tbl,[Count])

 

The variable is doing the distinct count per category in a table and then the sumx is referencing the variable table to sum the distinct counts together. Hope this helps!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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
Top Kudoed Authors