S
Sandy
I am trying to have '0' and '#N/A' if they occur replaced with "".
If I place a '0' in A1 and use the formula =IF(A1=0,"",A1) then fine I get
"".
If I place a '#N/A' in A1 and use the formula =IF(ISERROR(A1),"",A1) then
fine again I get "".
If I place a '0' in cell A1 and use the formula
=IF(OR(ISERROR(A1),A1=0),"",A1) then fine again I get ""
However if I place a '#N/A' in cell A1 and use the formula
=IF(OR(ISERROR(A1),A1=0),"",A1) then I get '#N/A'.
I have also tried =IF(OR(A1="#N/A",A1=0),"",A1) but still get '#N/A'.
Where am I messing up?
Sandy
If I place a '0' in A1 and use the formula =IF(A1=0,"",A1) then fine I get
"".
If I place a '#N/A' in A1 and use the formula =IF(ISERROR(A1),"",A1) then
fine again I get "".
If I place a '0' in cell A1 and use the formula
=IF(OR(ISERROR(A1),A1=0),"",A1) then fine again I get ""
However if I place a '#N/A' in cell A1 and use the formula
=IF(OR(ISERROR(A1),A1=0),"",A1) then I get '#N/A'.
I have also tried =IF(OR(A1="#N/A",A1=0),"",A1) but still get '#N/A'.
Where am I messing up?
Sandy