• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Nested ISERROR not working

Tripp

Member
Hello,

I am trying to create a simple if function with two criteria:

=IF(OR(ISERROR(A4),A4=0), "BAD","GOOD")

But it only works for cells containing numbers and doesn't work with errors.

Everything works separately but not in my formula.

What am I missing?

Regards,

Tripp
 
On the other way, to test the data

1.1] If the data is numeric value and ignore 0 :

=IF(ISNUMBER(1/A4),"GOOD","BAD")

1.2] If the data is numeric value (include 0) :

=IF(ISNUMBER(A4),"GOOD","BAD")

2] If the data is text value :

=IF(ISTEXT(B4),"GOOD","BAD")

Regards
Bosco
 
Back
Top