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
VBA Noob - 22 Jul 2006 15:23 GMT
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
Mike K - 22 Jul 2006 16:18 GMT
Thanks.
> Try this array
>
[quoted text clipped - 7 lines]
>
> VBA Noob
Alan - 22 Jul 2006 15:26 GMT
=IF(OR(ISERROR(A1),ISERROR(B1),ISERROR(C1)),"",C1)
Regards,
Alan.
> Oh Wise Ones,
> I would like to filter the conditions of 3 columns
[quoted text clipped - 8 lines]
> Thanks,
> Mike
VBA Noob - 22 Jul 2006 15:53 GMT
Alan,
I suugested that too. Give him the option
VBA Noob

Signature
VBA Noob
Alan - 22 Jul 2006 16:03 GMT
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.
> Alan,
>
> I suugested that too. Give him the option
>
> VBA Noob
VBA Noob - 22 Jul 2006 16:12 GMT
Doh...My bag.
I saw your or and thought it was another suggestion.
VbA Noob

Signature
VBA Noob