Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
QuantumLP
Frequent Visitor

Help with Dax formula to deduct or subtract based on sign

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

Net Receivable = CALCULATE(SUM(CustomerLedgerEntries[AGE_TotalOverdue])-SUM(CLE_byCx[Vendor_Balance]))
 
Howver due to the value sin both columns sometimes being negative or positive it does not give me the net between the 2 columns.
 
Any help would be appreciated
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@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.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@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.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

This did the trick! thanks so much!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.