How do I change FALSE values to 0?

M

MrShorty

Put a 0 in for the value_if_false argument. Standard IF syntax
=IF(condition,value_if_true,value_if_false), so for your first formula
=IF(AD7<0,AD7*-1,0
 
D

Dave Peterson

=IF(AD7<0,AD7*-1,0)
&
=IF(AD13>=0,AD13,0)

I'm not sure I understand about changing True to 0, though.
 
Top