Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Date | Val1 | Val2 | Difference | Absolute Value Difference |
1/1/2018 | 0 | 6 | -6 | 6 |
1/2/2018 | 6 | 5 | 1 | 1 |
1/3/2018 | 7 | 2 | 5 | 5 |
Total | 18 | 13 | 0 | 12 |
How do I write a DAX Formula to get 12 (The Absolute Value Difference SUMMED BY DAYS) as my desired output instead of 0?
This is the calculation and result I am getting currently:
ABS(Sum(Val1)) - ABS(Sum(Val2)) = 0
Solved! Go to Solution.
Use ABS only once, after subtracting the two sums
...
CALCULATE(
ABS( SUM('auditModelMessageCount'[Axeda ABC]) - SUM('auditModelMessageCount'[Raw Message History]) )
) ...
It depends on your table structure and you have t said if you have one or more tables. Assuming one table, this should work
SUMX(VALUES(table[Date]),CALCULATE(abs(sum(val1))-abs(sum(val2))))
you can learn about sum vs sumx in power BI at this link.
Matt,
Thanks for the quick response. My result is still 0 with that formula (see below in context). To answer question about data structure.... all my columns are from 1 table like you correctly assummed from the example above.
Test1 = SUMX(
VALUES('auditModelMessageCount'[auditDate]),
CALCULATE(
ABS(SUM('auditModelMessageCount'[Axeda ABC])) - ABS(SUM('auditModelMessageCount'[Raw Message History]))
)
)
Use ABS only once, after subtracting the two sums
...
CALCULATE(
ABS( SUM('auditModelMessageCount'[Axeda ABC]) - SUM('auditModelMessageCount'[Raw Message History]) )
) ...
THANK YOU! THAT WORKS!
Test1 = SUMX(
VALUES('auditModelMessageCount'[auditDate]),
CALCULATE(
ABS(
SUM('auditModelMessageCount'[Axeda ABC]) - SUM('auditModelMessageCount'[Raw Message History])
)
)
)
Yeah, I just copied the OP formula and assumed there was some reason it was that way. Obviously not 🙂
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
69 | |
55 | |
37 | |
35 |
User | Count |
---|---|
85 | |
66 | |
59 | |
46 | |
45 |