Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi All,
I have Base table - Table 1 (Screenshot below) and derived - Table 2 (Screenshot below) where SumColumn1 and SumColumn2 totals are coming correctly whereas the highlighted value sum is not coming correctly. Correct sum of that column is 8672600. DAX for the measure is present in screenshot
Table 1
Table 2
Can someone please help with the correct DAX measure?
Solved! Go to Solution.
You can try ...
TestNum =
var _vTable =
SUMMARIZE(
Sheet1,
Sheet1[Type], Sheet1[Category],
"_value", SUM(Sheet1[Column 2]) - SUM(Sheet1[Column 1])
)
Return
SUMX(
_vTable,
ABS([_value])
) * 100
Proud to be a Super User! | |
You can try ...
TestNum =
var _vTable =
SUMMARIZE(
Sheet1,
Sheet1[Type], Sheet1[Category],
"_value", SUM(Sheet1[Column 2]) - SUM(Sheet1[Column 1])
)
Return
SUMX(
_vTable,
ABS([_value])
) * 100
Proud to be a Super User! | |
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 63 | |
| 45 | |
| 41 | |
| 36 | |
| 23 |
| User | Count |
|---|---|
| 189 | |
| 124 | |
| 106 | |
| 78 | |
| 52 |