Formula How?

  • Thread starter Thread starter Michael168
  • Start date Start date
M

Michael168

Anyone can help me for the below formula.

Worksheet 1
Col A B C
1 3 5
2 5 2
4 1 3
How to count no of odd numbers in the range A1:C1, A2:C2, A3:C3? I
plain english, I want is if there is a count of 3, the cell value wil
be equal to 1.
As the example above,in worksheet 2, cell B1=1, B2=0, B3=0
I want the answer in worksheet 2,Col B instead of in worksheet 1.

Thanks for helping
 
One way...

In D1 enter & copy down:

=--(SUMPRODUCT(1-(MOD(A1:C1,2)=0))=COUNT(A1:C1))
 
Back
Top