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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
astano05
Helper III
Helper III

Remove Negative Values only in January

I have created the below 2 measure which work as expected. 

 

MPG Sold YTD-LY Chg SUM = sumx(filter(Customer,[MPGs Sold YTD-LY Chg threshold]>0),[MPGs Sold YTD-LY Chg threshold])

New MPG Sold = [MPG Sold YTD-LY Chg SUM]-calculate([MPG Sold YTD-LY Chg SUM],dateadd('Calendar'[Date Value],-1,MONTH))

 

However, the issue is with January there are many negative values when comparing January to December of the previous year. How can i filter out only the negative values in the New MPG Sold measure

3 REPLIES 3
lbendlin
Super User
Super User

return BLANK() for negative results.

 

Return if([value]>0,[value])

lbendlin
Super User
Super User

use MAX(0,[value])  to suppress negative values.

This works to change the negative values to 0, but I want my measure to calculate only for positive outcomes. Using MAX, causes it to show 0 for all values 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors