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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
kati70
Regular Visitor

How can I convert negative value to zero

Hi,

 

I couldn't find a solution for this, so I really do hope that someone can support with this.

I have calculation where negative values should be converted to zero. Any ideas?

Thanks a lot,

-Kati

 

4 REPLIES 4
Baskar
Resident Rockstar
Resident Rockstar

Ya we can do . 

 

If (  measure < 0 , 0 , measure )

 

 

thats it. 

 

let me know if any further help.

Anonymous
Not applicable

I am wondering if this is the optimal way or if using the function max( measure, 0) performs quicker.

 

(apologies for ressurecting an old thread!)

epieters
Frequent Visitor

Test if the number is negative, and if so, add the abolute value of that number.

That will give you the zero.

 

IF( [Number] < 0, [Number] + ABS( [Number] ), [Number] )

 

Cheers,

 

--Eric.

 

skasper
Responsive Resident
Responsive Resident

Have you tried adding a conditional column? See example below. Of course with your own column names. I am the first to admit that this is not very elegant, but it should work until you have a better solution.

 

Clipboard01.jpg

Best - Sascha
Please always mark accepted solutions. It helps others with similar questions or problems. Thank you.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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