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 g...
- 4 years ago
please use
Measure Multiplication =
SUMX (
VALUES ( TableName[Segmaent] ),
[Clients] * [Consumption]
)
Fowmy
4 years agoSuper User
Pikachu-Power
Modify the measure as follows:
Total =
SUMX( VALUES ( Table[Segment] ) , [Clients] * [Consumption] )Pikachu-Power
4 years agoImpactful Individual
Great that's it!