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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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
User | Count |
---|---|
9 | |
8 | |
5 | |
4 | |
3 |