Forum Discussion
LeahZhang
4 years agoMicrosoft Employee
SUMX Calculation
Dear Team, Thanks for your prompt and continious support. I am fresh new to DAX, and seek team advise on the below mismatch: Two Measure Are: totalScore #1 = SUMX ( VALUES ( 'Config ...
- 4 years ago
Try:
totalscore = SUMX ( ADDCOLUMNS ( SUMMARIZE ( Table, Table[GHG item], Table[Plant] ), "TScore", [Emission Factor] * [Input] ), [Tscore] )
PaulDBrown
4 years agoCommunity Champion
Try:
totalscore =
SUMX (
ADDCOLUMNS (
SUMMARIZE ( Table, Table[GHG item], Table[Plant] ),
"TScore", [Emission Factor] * [Input]
),
[Tscore]
)