ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   count only if (https://www.excelbanter.com/excel-discussion-misc-queries/259415-count-only-if.html)

Erin

count only if
 
How do I count the number of cells only if E1:E100 contains "ray" and F1:F100
contains a "d"? I only want the "d's" in column if column E has Raytheon.
Right now it's counting all the "d's" in column f and all the "ray's" in
column e, but I only want column f to count if column e has ray. Hope that
makes sense. Please help.

Gary Keramidas[_4_]

count only if
 
not quite sure what you ant, nut give this a try

=SUMPRODUCT((E1:E100="Raytheon")*(F1:F100="d"))

--


Gary Keramidas
Excel 2003


"Erin" wrote in message
...
How do I count the number of cells only if E1:E100 contains "ray" and
F1:F100
contains a "d"? I only want the "d's" in column if column E has Raytheon.
Right now it's counting all the "d's" in column f and all the "ray's" in
column e, but I only want column f to count if column e has ray. Hope that
makes sense. Please help.



Erin

count only if
 
I tried (the critera is on worksheet named masterlist)...

=SUMPRODUCT(--(MASTERLIST!E2:E100="*Ray"),--(MASTERLIST!F2:F100="*d"))

but it doesn't work. :-(

"Erin" wrote:

How do I count the number of cells only if E1:E100 contains "ray" and F1:F100
contains a "d"? I only want the "d's" in column if column E has Raytheon.
Right now it's counting all the "d's" in column f and all the "ray's" in
column e, but I only want column f to count if column e has ray. Hope that
makes sense. Please help.


Fred Smith[_4_]

count only if
 
That's because Sumproduct does not support wildcards. You need to do it this
way:
=SUMPRODUCT(--(ISNUMBER(SEARCH("ray",MASTERLIST!E2:E100))),--(ISNUMBER(SEARCH("d",MASTERLIST!F2:F100))))

Regards,
Fred


"Erin" wrote in message
...
I tried (the critera is on worksheet named masterlist)...

=SUMPRODUCT(--(MASTERLIST!E2:E100="*Ray"),--(MASTERLIST!F2:F100="*d"))

but it doesn't work. :-(

"Erin" wrote:

How do I count the number of cells only if E1:E100 contains "ray" and
F1:F100
contains a "d"? I only want the "d's" in column if column E has Raytheon.
Right now it's counting all the "d's" in column f and all the "ray's" in
column e, but I only want column f to count if column e has ray. Hope
that
makes sense. Please help.



Erin

count only if
 
Shoot.....thank you, but it returned a 0.

I even tried ....

=SUMPRODUCT(--(MASTERLIST!E2:E100="Raytheon"),--(MASTERLIST!F2:F100="d"))

(the criteria is on the Masterlist worksheet) but that didn't work either. I
also tried:

=COUNTIF(MASTERLIST!E2:E100,"*Raytheon")+COUNTIF(M ASTERLIST!F2:F100,"*d")

but that counted all the d's in column f and all the raytheon's in column e

any other ideas?

"Gary Keramidas" wrote:

not quite sure what you ant, nut give this a try

=SUMPRODUCT((E1:E100="Raytheon")*(F1:F100="d"))

--


Gary Keramidas
Excel 2003


"Erin" wrote in message
...
How do I count the number of cells only if E1:E100 contains "ray" and
F1:F100
contains a "d"? I only want the "d's" in column if column E has Raytheon.
Right now it's counting all the "d's" in column f and all the "ray's" in
column e, but I only want column f to count if column e has ray. Hope that
makes sense. Please help.


.


Erin

count only if
 
THANK YOU FRED! YOU ROCK! It worked like a charm.

Have a great night!

"Fred Smith" wrote:

That's because Sumproduct does not support wildcards. You need to do it this
way:
=SUMPRODUCT(--(ISNUMBER(SEARCH("ray",MASTERLIST!E2:E100))),--(ISNUMBER(SEARCH("d",MASTERLIST!F2:F100))))

Regards,
Fred


"Erin" wrote in message
...
I tried (the critera is on worksheet named masterlist)...

=SUMPRODUCT(--(MASTERLIST!E2:E100="*Ray"),--(MASTERLIST!F2:F100="*d"))

but it doesn't work. :-(

"Erin" wrote:

How do I count the number of cells only if E1:E100 contains "ray" and
F1:F100
contains a "d"? I only want the "d's" in column if column E has Raytheon.
Right now it's counting all the "d's" in column f and all the "ray's" in
column e, but I only want column f to count if column e has ray. Hope
that
makes sense. Please help.


.


Fred Smith[_4_]

count only if
 
Glad to help. Thanks for the feedback.

Regards,
Fred

"Erin" wrote in message
...
THANK YOU FRED! YOU ROCK! It worked like a charm.

Have a great night!

"Fred Smith" wrote:

That's because Sumproduct does not support wildcards. You need to do it
this
way:
=SUMPRODUCT(--(ISNUMBER(SEARCH("ray",MASTERLIST!E2:E100))),--(ISNUMBER(SEARCH("d",MASTERLIST!F2:F100))))

Regards,
Fred


"Erin" wrote in message
...
I tried (the critera is on worksheet named masterlist)...

=SUMPRODUCT(--(MASTERLIST!E2:E100="*Ray"),--(MASTERLIST!F2:F100="*d"))

but it doesn't work. :-(

"Erin" wrote:

How do I count the number of cells only if E1:E100 contains "ray" and
F1:F100
contains a "d"? I only want the "d's" in column if column E has
Raytheon.
Right now it's counting all the "d's" in column f and all the "ray's"
in
column e, but I only want column f to count if column e has ray. Hope
that
makes sense. Please help.


.




All times are GMT +1. The time now is 03:22 AM.

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