ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   COUNTIF on NonContiguous Cells? (https://www.excelbanter.com/excel-worksheet-functions/229854-countif-noncontiguous-cells.html)

roadkill

COUNTIF on NonContiguous Cells?
 
Okay, so I think my issue with my COUNTIF is that the cells are not next to
each other. This is my range: (C3,E3,G3,I3,K3,M3).

What I want to do is range all the cells in that range that have data
equivalent to 1.00.

What I am thinking is =COUNTIF(C3,E3,G3,I3,K3,M3, "=1"). But unfortunately
that doesn't work.

Thanks

T. Valko

COUNTIF on NonContiguous Cells?
 
Try this:

=SUMPRODUCT(--(MOD(COLUMN(C3:M3)-COLUMN(C3),2)=0),--(C3:M3=1))

--
Biff
Microsoft Excel MVP


"RoadKill" wrote in message
...
Okay, so I think my issue with my COUNTIF is that the cells are not next
to
each other. This is my range: (C3,E3,G3,I3,K3,M3).

What I want to do is range all the cells in that range that have data
equivalent to 1.00.

What I am thinking is =COUNTIF(C3,E3,G3,I3,K3,M3, "=1"). But unfortunately
that doesn't work.

Thanks




Mike H

COUNTIF on NonContiguous Cells?
 
Try this

=SUMPRODUCT(--ISNUMBER(MATCH(COLUMN(C3:M3)-COLUMN(C3)+1,{1,3,5,7,9,11},0)),
--(C3:M3=1))

all in one line

Mike

"RoadKill" wrote:

Okay, so I think my issue with my COUNTIF is that the cells are not next to
each other. This is my range: (C3,E3,G3,I3,K3,M3).

What I want to do is range all the cells in that range that have data
equivalent to 1.00.

What I am thinking is =COUNTIF(C3,E3,G3,I3,K3,M3, "=1"). But unfortunately
that doesn't work.

Thanks


roadkill

COUNTIF on NonContiguous Cells?
 
Wow, that works. Thanks!

"Mike H" wrote:

Try this

=SUMPRODUCT(--ISNUMBER(MATCH(COLUMN(C3:M3)-COLUMN(C3)+1,{1,3,5,7,9,11},0)),
--(C3:M3=1))

all in one line

Mike

"RoadKill" wrote:

Okay, so I think my issue with my COUNTIF is that the cells are not next to
each other. This is my range: (C3,E3,G3,I3,K3,M3).

What I want to do is range all the cells in that range that have data
equivalent to 1.00.

What I am thinking is =COUNTIF(C3,E3,G3,I3,K3,M3, "=1"). But unfortunately
that doesn't work.

Thanks


Mike H

COUNTIF on NonContiguous Cells?
 
You seem surprised it did!! Thank's for the feedback

"RoadKill" wrote:

Wow, that works. Thanks!

"Mike H" wrote:

Try this

=SUMPRODUCT(--ISNUMBER(MATCH(COLUMN(C3:M3)-COLUMN(C3)+1,{1,3,5,7,9,11},0)),
--(C3:M3=1))

all in one line

Mike

"RoadKill" wrote:

Okay, so I think my issue with my COUNTIF is that the cells are not next to
each other. This is my range: (C3,E3,G3,I3,K3,M3).

What I want to do is range all the cells in that range that have data
equivalent to 1.00.

What I am thinking is =COUNTIF(C3,E3,G3,I3,K3,M3, "=1"). But unfortunately
that doesn't work.

Thanks


Harlan Grove[_2_]

COUNTIF on NonContiguous Cells?
 
RoadKill wrote...
Okay, so I think my issue with my COUNTIF is that the cells are not next to
each other. This is my range: (C3,E3,G3,I3,K3,M3).

What I want to do is range all the cells in that range that have data
equivalent to 1.00.

What I am thinking is =COUNTIF(C3,E3,G3,I3,K3,M3, "=1"). But unfortunately
that doesn't work.


For counting, use FREQUENCY.

=INDEX(FREQUENCY((C3,E3,G3,I3,K3,M3),{0.9999999999 99999;1}),2)


All times are GMT +1. The time now is 10:27 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com