OR function problem
Actually F11 is a text value. Is there another formula that might work
besides =IF(COUNT(1/F11),F11,"")??
On Mar 6, 10:54 pm, "T. Valko" wrote:
The problem is that if the cell contains #N/A then:
ISNA(F11) = TRUE
But:
F11=0 = #N/A
Which causes OR to return #N/A
I'm assuming from your description that F11 is supposed to be a *numeric
value* but might be #N/A.
Try this:
=IF(COUNT(1/F11),F11,"")
--
Biff
Microsoft Excel MVP
"luvnrocs" wrote in message
...
I'm trying o figure out why this formula isn't working as expected.
I need to check in a column to see if any cells have the number zero
or #NA. If either condition is true, OR should return "True" and then
make the destination cell blank. If neither condition is met then OR
returns "False" and the value from F11 is copied to G11.
This formula is in cell G11:
=IF(OR(ISNA(F11),F11=0),"",F11)
|