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.
I have a data set for my finance department in which I have a Total over due column which can be positive or negative amount, and a Vendor blance which can also be positive or negative amount.
I need to create a measure which gives me the net from both values, but if I try a subtract, it will add negative amounts together.
My measure currently looks like this
Solved! Go to Solution.
@QuantumLP , not very clear
you can try
Net Receivable = CALCULATE(Abs(SUM(CustomerLedgerEntries[AGE_TotalOverdue]))- Abs(SUM(CLE_byCx[Vendor_Balance])) )
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
@QuantumLP , not very clear
you can try
Net Receivable = CALCULATE(Abs(SUM(CustomerLedgerEntries[AGE_TotalOverdue]))- Abs(SUM(CLE_byCx[Vendor_Balance])) )
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
This did the trick! thanks so much!