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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Ttaylor9870
Helper III
Helper III

Should be easy fix I am just baffled, DAX to change values from negative to zeros

Hi All,

I have this measure...

Free Stock Value =
Sum('ABC'[Quantity]) - Sum('DEF'[Outstanding Quantity])
 
Any way I can get this measure to change negative values returned into 0's?
 
I've used...
 
IF(Free Stock Value < 0, 0, Free Stock Value) 


And it works fine but the total stays the exact same and doesn't add up properly it still assumes there is negative values present.
 
Any help would be greatly appricated!
 
Manuy Thanks,
 
Taylor
1 ACCEPTED SOLUTION
ValtteriN
Community Champion
Community Champion

Hi,

I recommend reading this article by sqlbi to understand what is going on here: Obtaining accurate totals in DAX - SQLBI

Basically the totals work in mysterious ways and even if your measure would work on a row level it will not work at total level. E.g. 

ValtteriN_1-1674646986553.png

Measure 36 = IF(SELECTEDVALUE('Table (20)'[Column1])<0,0, SUM('Table (20)'[Column1]))
^^ won't work


Measure 37 = SUMX(FILTER('Table (20)', 'Table (20)'[Column1] >= 0), 'Table (20)'[Column1])
^^ will work
ValtteriN_2-1674647585424.png

 

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/






Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

4 REPLIES 4
FreemanZ
Community Champion
Community Champion

hi @Ttaylor9870 

when you say negative Free Stock Value, negative under what context?

Hi @FreemanZ,

 

Negative e.g. I subtract the 2 values away from eachother. Both numbers in the columns are always going to be positive so the new number in the measure column could possible be negative and I want those negatives to display zero instead of displaying as the negative number.

 

I am trying to work out free stock so....

 

Quantity = Stock currently sitting

Outstanding = Stock sold

 

 

 

 

 

 

 

 

ValtteriN
Community Champion
Community Champion

Hi,

I recommend reading this article by sqlbi to understand what is going on here: Obtaining accurate totals in DAX - SQLBI

Basically the totals work in mysterious ways and even if your measure would work on a row level it will not work at total level. E.g. 

ValtteriN_1-1674646986553.png

Measure 36 = IF(SELECTEDVALUE('Table (20)'[Column1])<0,0, SUM('Table (20)'[Column1]))
^^ won't work


Measure 37 = SUMX(FILTER('Table (20)', 'Table (20)'[Column1] >= 0), 'Table (20)'[Column1])
^^ will work
ValtteriN_2-1674647585424.png

 

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/






Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Nice @ValtteriN I will give it a read! Many Thanks!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.