Countifs

  • Thread starter Thread starter CD27
  • Start date Start date
C

CD27

I am having problems with a formula. I have a worksheet with 9
columns (A thur I) that contain various numbers. I need to create a
formula that if any cell in row 1 contains either a {1,2,3,4,6,20}
input 1 and if not input 0.

I tried the following but it only seems to be counting the cells with
a 1. =COUNTIF(A14:I14,{1,2,3,4,6,20})

Countifs seems to be doing the same thing in Excel 2007.


Thanks

CD
 
CD27 said:
I am having problems with a formula. I have a worksheet with 9
columns (A thur I) that contain various numbers. I need to create a
formula that if any cell in row 1 contains either a {1,2,3,4,6,20}
input 1 and if not input 0.

I tried the following but it only seems to be counting the cells with
a 1. =COUNTIF(A14:I14,{1,2,3,4,6,20})

Countifs seems to be doing the same thing in Excel 2007.


Thanks

CD

Try...

=(SUM(COUNTIF(A14:I14,{1,2,3,4,6,20}))>0)+0

or

=(SUMPRODUCT(--ISNUMBER(MATCH(A14:I14,{1,2,3,4,6,20},0)))>0)+0
 
Back
Top