How do change values of TRUE or FALSE to 0?
R Redleg40 Aug 2, 2005 #3 =IF(AD7<0,AD7*-1) & =IF(AD13>=0,AD13) Jambruins said: what is the formula you are using? Click to expand...
=IF(AD7<0,AD7*-1) & =IF(AD13>=0,AD13) Jambruins said: what is the formula you are using? Click to expand...
M MrShorty Aug 2, 2005 #4 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
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 Aug 2, 2005 #5 =IF(AD7<0,AD7*-1,0) & =IF(AD13>=0,AD13,0) I'm not sure I understand about changing True to 0, though.
=IF(AD7<0,AD7*-1,0) & =IF(AD13>=0,AD13,0) I'm not sure I understand about changing True to 0, though.