Forum Discussion
LeahZhang
4 years agoMicrosoft Employee
Incorrect 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
4 years agoSuper User
LeahZhang
Can you try the following measure for plantScore
plantScore =
SUMX ( VALUES ( tablename[swr_name] ), [totalScore] * [plantTotalweight] )
LeahZhang
4 years agoMicrosoft Employee
Thanks Fowmy, it works!!š
Just wonder what is the difference between SUMX() and just writing function.