ISNUMBER & SEARCH problem

D

DJ

Got a sheet with formula
=SUMPRODUCT(--(ISNUMBER(SEARCH("yes",raw_data!$D$2:$D$8002))*(--(ISNUMBER(SEARCH(D2,raw_data!$U$2:$U$8002))))))
- basically it is searching another sheet for number of 'yes' responses from
group of people in D2 (i.e. sales).

Works fine but is counting "sales & marketing", "web sales" etc - I only
want it to count lines that have a "yes" and "sales" only - hope that makes
sense.

Any help gratefully rec'd.
 
M

Max

.. I only want it to count lines that have a "yes" and "sales" only

Perhaps this suffices:
=SUMPRODUCT((raw_data!$D$2:$D$8002="yes")*(raw_data!$U$2:$U$8002=D2))
where D2 contains: sales

aha? hit the YES below
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
 
D

DJ

tried and it didn't work but I think I know why; I made a slight error in my
initial Q. I need to be able to count "sales" and "sale" - basically anything
need to add wildcard at end of "sale" - tried in your calc and it didn't work
- any idea?
 
J

Jacob Skaria

Try

=SUMPRODUCT((raw_data!$D$2:$D$8002="yes")*(ISNUMBER(SEARCH("sale",raw_data!$U$2:$U$8002))))

search string *sale*

If this post helps click Yes
 
M

Max

If source cells could contain either of these 2 words:
.. need to be able to count "sales" and "sale"

My venture
=SUMPRODUCT((raw_data!$D$2:$D$8="yes")*(ISNUMBER(MATCH(TRIM(raw_data!$U$2:$U$8),{"sale","sales"},0))))

Test it out ..
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
---
 

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

Similar Threads

important! 3
Formula Help 2
SEARCH IN SUMPRODUCT 8
display calculation next row 5
Search Entire Sheet instead of 1? 4
SUMPRODUCT #VALUE! problem 4
Sum Error 2
Sumif query 4

Top