Forum Discussion
Pikachu-Power
4 years agoImpactful Individual
Wrong Total / Measure Problem
Hello,
I probably have a simple problem where i am looking for a simple way š
Measure:
Consumption = CALCULATE(SUM(Table[Value]))
When I multiply later the Consumption with Numbers I get following wrong result for the Total:
Measure Multiplication = Clients * Consumption
How do I have to change the DAX formula in the Measure Multiplication to get the right value?
Thanks!
please use
Measure Multiplication =
SUMX (
VALUES ( TableName[Segmaent] ),
[Clients] * [Consumption]
)
3 Replies
- tamerj1Community Champion
please use
Measure Multiplication =
SUMX (
VALUES ( TableName[Segmaent] ),
[Clients] * [Consumption]
) - FowmySuper User
Pikachu-Power
Modify the measure as follows:Total = SUMX( VALUES ( Table[Segment] ) , [Clients] * [Consumption] )- Pikachu-PowerImpactful Individual
Great that's it!