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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I need ur help that I need to calculate the difference between the number of actual sales and forecast sales, but the positive value and negative value shoudn't be offset, so I need to calculate the absolute difference. And here is my situation, please refer to the link:
https://drive.google.com/file/d/1-JcZDiK5D7cm9BwCj4h4g7o_u-g1rnlX/view?usp=sharing
Solved! Go to Solution.
@Chelsea_Yu
You can use the following measure:
AbsDiff =
SUMX(
CROSSJOIN('Product list','Channel list') ,
ABS([sum of actual] - [sum of forecast])
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Chelsea_Yu
You can use the following measure:
AbsDiff =
SUMX(
CROSSJOIN('Product list','Channel list') ,
ABS([sum of actual] - [sum of forecast])
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group