Syntax to "OR" 3 "ISERROR" conditions

M

Mike K

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
 
V

VBA Noob

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
 
A

Alan

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.
 
Top