Countifs

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
 
D

Domenic

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top