S
Stefan
Why does this not work: =IF(AND(B5="122"),(SUM(D5:L5)>1)),1,0
Jim Thomlinson said:You can do this...(I left the quotes around 122 as I assume B5 is Text???)
=IF(AND(B5="122",SUM(D5:L5)>1),1,0)
or
=AND(B5="122",SUM(D5:L5)>1)