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
Blevels
Frequent Visitor

DAX Calculate Column results in Wrong Table Total

Hi,

A Visualization Table Total value for a calculated measure is incorrect.

I have a table visualization that includes a list of inventory parts and the part attributes.

This Table has two summary fields [COST] and [QUANTITY].  

A measure called [VALUE] is defined AS:  Value = CALCULATE(SUM('TABLE'[Cost]) * SUM('TABLE'[Quantity]))

This measure is included in the Columns on the Table Visualization and is displayed correctly for each row.

 

However, turning on the Totals results in a very wild value (trillions) for the [VALUE] measure.

Should this calculation be moved back to the Table creation? What is the best way to obtain the correct table total? 

 

In Advance, thank you for your input to this solution.

1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

Hi @Blevels 

 

First, change your measure to this:

Value =
SUMX ( 'TABLE', 'TABLE'[Cost] * 'TABLE'[Quantity] )

 

And read this blog post to find out how to manage this situation:
https://www.vahiddm.com/post/why-my-measure-returns-the-wrong-total


If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

Badges.jpg

LinkedIn | Twitter | Blog | YouTube 

View solution in original post

2 REPLIES 2
v-zhangti
Community Support
Community Support

Hi, @Blevels 

 

You can try the following methods.

Value = CALCULATE(SUM('Table'[COST])*SUM('Table'[QUANTITY]))
Measure = IF(HASONEVALUE('Table'[Part]),[Value],SUMX('Table',[Value]))

vzhangti_0-1667975685726.png

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

VahidDM
Super User
Super User

Hi @Blevels 

 

First, change your measure to this:

Value =
SUMX ( 'TABLE', 'TABLE'[Cost] * 'TABLE'[Quantity] )

 

And read this blog post to find out how to manage this situation:
https://www.vahiddm.com/post/why-my-measure-returns-the-wrong-total


If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

Badges.jpg

LinkedIn | Twitter | Blog | YouTube 

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