Syntax to "OR" 3 "ISERROR" conditions

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Oh Wise Ones,
I would like to filter the conditions of 3 columns for
errors and evaluate in a fourth. I need a null value not just a white font.
I've played with the OR syntax and nothing works. Any ideas please?

Basically I need in D1:
IF A1 OR B1 OR C1 is in error "" else C1.

Thanks,
Mike
 
Try this array

=IF(ISERROR(A1:C1),"",C1)

Enter in D1 with Ctrl + Shift + Enter

or this alonger non arrays

=IF(OR(ISERROR(A1),ISERROR(B1),ISERROR(C1)),"",C1)



VBA Noo
 
Your reply wasn't on the screen when I replied, if it had been I wouldn't
have duplicated it. Your array formula is a good one,
Regards,
Alan.
 
Doh...My bag.

I saw your or and thought it was another suggestion.


VbA Noob
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top