March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe 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
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.
Solved! Go to Solution.
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!!
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]))
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.
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!!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
16 | |
15 | |
7 | |
6 |
User | Count |
---|---|
33 | |
29 | |
16 | |
13 | |
12 |