Return 0.00 if Neg.

C

Canon

Excel 2007
I am using a very simple formula;
cell D22=SUM(D20-D19)
But if the sum of the above formula is negative, I need to show 0.00 in cell
D22
 
C

Christopher Robin

I'm not sure, why you're using a SUM(D20-D19), but here is how you would use
a conditional formula.

=if(D20-D19<0,0.00,D20-D19)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top