Posted to microsoft.public.excel.worksheet.functions
|
|
Need Help with a Formula
That will return "Yes" for combinations such as this one (and there are
*lots* more)...
A2="YY"
B2="Y"
C2=""
D2="YY
E2=""
--
Rick (MVP - Excel)
"Domenic" wrote in message
...
Try...
=IF(A2&B2&C2&D2&E2="YYYYY","Yes","No")
Hope this helps!
http://www.xl-central.com
In article
,
wrote:
Hello,
Trying to come up with a formula which would do - if A through E =Y
then H = YES else NO
i started with this but it does not work. =IF((E2:I2 = y), "YES","NO")
A B C D E H
Y Y Y Y Y
Y Y Y N Y
Thanks for the help!
|