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
We've a requirement to display the difference of two measure fields. Shared example for your reference :
Your cooperation in this regard will be highly appreaciated.
Solved! Go to Solution.
Hi @Anonymous ,
Here are the steps you can follow:
1. Create measure.
Measure =
var _selecttable2=SELECTEDVALUE('Table2'[Month])
var _sumtable2=SUMX(
FILTER(ALL('Table2'),'Table2'[Month]=_selecttable2&&'Table2'[Client]=MAX('Table1'[Client ID])),[Sales])
return
SUM('Table1'[Sales]) - _sumtable2
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Thanks for providing quick solution. Implemented this logic and it worked as expected.
Hi @Anonymous ,
Here are the steps you can follow:
1. Create measure.
Measure =
var _selecttable2=SELECTEDVALUE('Table2'[Month])
var _sumtable2=SUMX(
FILTER(ALL('Table2'),'Table2'[Month]=_selecttable2&&'Table2'[Client]=MAX('Table1'[Client ID])),[Sales])
return
SUM('Table1'[Sales]) - _sumtable2
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 4 | |
| 3 | |
| 3 |