G
GregP1962
how do I make a cell show zero if the number is negative? Excel hel
doesn't have this info in a redily available place
doesn't have this info in a redily available place
renegan said:If your cell gives negative values due to a formula try this:
=if(FORMULA IN CELL<0,0,FORMULA IN CELL)
Are these numbers the result of a formula? If so, then you can use the MAX()
function.
=MAX(0,yourformula)
This displays the larger of the two numbers, so if your formula results in a
negative number, the 0 will be larger and thus be displayed.