Forum Discussion
Pikachu-Power
Impactful Individual
4 years agoWrong 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
Super User
4 years agoPikachu-Power
Modify the measure as follows:
Total =
SUMX( VALUES ( Table[Segment] ) , [Clients] * [Consumption] )Pikachu-Power
Impactful Individual
4 years agoGreat that's it!