Forum Discussion
LeahZhang
Microsoft Employee
4 years agoIncorrect Measure Totals
Dear Team, I run into a problem with Incorrect Measure Totals and seek expert advise on it. Th totalScore/ plantTotalweight are both measures plantScore = totalScore * plantTotalweight ...
Fowmy
Super User
4 years agoLeahZhang
Can you try the following measure for plantScore
plantScore =
SUMX ( VALUES ( tablename[swr_name] ), [totalScore] * [plantTotalweight] )
- LeahZhang4 years ago
Microsoft Employee
Thanks Fowmy, it works!!😁
Just wonder what is the difference between SUMX() and just writing function.