I need to show Negative numbers as a Zero for Forecast Chart

TonyT

New member
Local time
Today, 17:33
Joined
May 24, 2024
Messages
9
Hi, I am trying to make a chart that shows Actual savings against Forecast savings, the calculated cells I am using for my data is showing a negative when I need it to show a zero (0) for the months with no savings in yet.

1724594100555.png

I need the chart to look like this with nothing resulting in the variance column so there are no negative values in the chart
1724594207462.png



I have almost fried my brain trying everything!!

Thanks
 
How about an IF() function?
 
Try either:
=IF((Actual-forecast) > 0, Actual-forecast, 0)
Or:
=MAX(Actual-forecast, 0)
 

Users who are viewing this thread

Back
Top Bottom