The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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!