Forum Discussion
Omega
9 years agoImpactful Individual
Absolute at total
Dears, I am currently trying to calculate the absolute difference between imports and exports at SKU level in the total. For the same SKU, I have imports and exports in every week. At the end of ...
- Anonymous9 years ago
Omega,
Create the following measures and check if you get expected result.
NewMeasure = IF(COUNTROWS(VALUES(Table2[SKU]))=1,Table2[ABSDIFF],SUMX(VALUES(Table2[SKU]),[ABSDIFF]))
Measure 3 = [NewMeasure]/[ExportTotal]
Regards,
Lydia
Omega
9 years agoImpactful Individual
Measure = SUMX(Table2,ABS(Table2[Export]-Table2[Import]))
dedelman_clng
9 years agoCommunity Champion
Your code is doing the absolute value, then summing. You want to sum then do absolute value
Measure = ABS(SUMX(Table2, (Table2[Export]-Table2[Import])))