Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Inter
 
Posts: n/a
Default sumproduct formula (multiple criteria)

Hi,
I've got the sumproduct formula to work (thanks to you guys and girls) but
now what i want to do is sum cells according to 2 criteria ... but i want
both of those criteria to be this OR that OR something else.

To put it another way, i want to sum the number of downloads (in column A)
but only if column B contains either "France" OR "Italy" and column C
contains either "Brand A" OR "Brand B"

Many thanks
Stuart


  #2   Report Post  
Posted to microsoft.public.excel.misc
Stefi
 
Posts: n/a
Default sumproduct formula (multiple criteria)

Try this solution using a helper column:
Formula in helper column (say G), cell G2:
=AND(OR(B2="France",B2="Italy"),OR(C2="Brand A",C2="Brand B"))
and drag it down as required!
SUMPRODUCT formula:
=SUMPRODUCT(A2:A10,--G2:G10)

Regards,
Stefi


€žInter€ť ezt Ă*rta:

Hi,
I've got the sumproduct formula to work (thanks to you guys and girls) but
now what i want to do is sum cells according to 2 criteria ... but i want
both of those criteria to be this OR that OR something else.

To put it another way, i want to sum the number of downloads (in column A)
but only if column B contains either "France" OR "Italy" and column C
contains either "Brand A" OR "Brand B"

Many thanks
Stuart


  #3   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default sumproduct formula (multiple criteria)

=SUMPRODUCT(--(ISNUMBER(MATCH(C1:C10,{"Brand A","Brand
B"},0))),--(ISNUMBER(MATCH(B1:B10,{"France","Italy"},0))),A1: A10)

--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)

"Inter" wrote in message
...
Hi,
I've got the sumproduct formula to work (thanks to you guys and girls) but
now what i want to do is sum cells according to 2 criteria ... but i want
both of those criteria to be this OR that OR something else.

To put it another way, i want to sum the number of downloads (in column A)
but only if column B contains either "France" OR "Italy" and column C
contains either "Brand A" OR "Brand B"

Many thanks
Stuart




  #4   Report Post  
Posted to microsoft.public.excel.misc
Inter
 
Posts: n/a
Default sumproduct formula (multiple criteria)

Thanks for both of these ... very helpful.

Follow up question though - how about if i want to sum the cells in column A
that have "France" OR "Italy" in column B but DO NOT have "Brand A" (i.e. do
have anything apart from "Brand A") in column C?

Cheers
Stuart
  #5   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default sumproduct formula (multiple criteria)

=SUMPRODUCT(--(C1:C10<"Brand
A"),--(ISNUMBER(MATCH(B1:B10,{"France","Italy"},0))),A1: A10)

--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)

"Inter" wrote in message
...
Thanks for both of these ... very helpful.

Follow up question though - how about if i want to sum the cells in column

A
that have "France" OR "Italy" in column B but DO NOT have "Brand A" (i.e.

do
have anything apart from "Brand A") in column C?

Cheers
Stuart





  #6   Report Post  
Posted to microsoft.public.excel.misc
Inter
 
Posts: n/a
Default sumproduct formula (multiple criteria)

Bob and Stefi, you're geniuses! Or should that be genii? I don't know but i
can now do exactly what i wanted.

Many thanks
Stuart

  #7   Report Post  
Posted to microsoft.public.excel.misc
paul
 
Posts: n/a
Default sumproduct formula (multiple criteria)

=SUMPRODUCT(--(Genius),--("Bob","Stefi"))?


--
paul

remove nospam for email addy!



"Inter" wrote:

Bob and Stefi, you're geniuses! Or should that be genii? I don't know but i
can now do exactly what i wanted.

Many thanks
Stuart

  #8   Report Post  
Posted to microsoft.public.excel.misc
Inter
 
Posts: n/a
Default sumproduct formula (multiple criteria)

Ok, final question (more out of interest than anything else) ... how would i
write a formula that would give me the sum of cells in column A that do not
have either "France" or "Italy" in column B and do not have either "Brand A"
or "Brand B" in column C?

I'd presume it's a hack of Bob's formula -
=SUMPRODUCT(--(ISNUMBER(MATCH(C1:C10,{"Brand A","Brand
B"},0))),--(ISNUMBER(MATCH(B1:B10,{"France","Italy"},0))),A1: A10) - but i
can't see where you'd put the < that works for a single specific criteria.

Cheers!
Stuart
  #10   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default sumproduct formula (multiple criteria)

Because it is not testing for =, there is nothing to replace with <. The
key is that it does its biz by testing the MATCH for a number
(ISNUMBER(MATCH(...). So you need to modify that, I would do it by testing
not a number

=SUMPRODUCT(--(NOT(ISNUMBER(MATCH(C1:C10,{"Brand A","Brand B"},0)))),
--(NOT(ISNUMBER(MATCH(B1:B10,{"France","Italy"},0)
))),A1:A10)


--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)

"Inter" wrote in message
...
Ok, final question (more out of interest than anything else) ... how would

i
write a formula that would give me the sum of cells in column A that do

not
have either "France" or "Italy" in column B and do not have either "Brand

A"
or "Brand B" in column C?

I'd presume it's a hack of Bob's formula -
=SUMPRODUCT(--(ISNUMBER(MATCH(C1:C10,{"Brand A","Brand
B"},0))),--(ISNUMBER(MATCH(B1:B10,{"France","Italy"},0))),A1: A10) - but i
can't see where you'd put the < that works for a single specific

criteria.

Cheers!
Stuart





  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 23
Default sumproduct formula (multiple criteria)

Hi,

I've looked at this formula & can get it to work for my data if I type in
the criteria eg {"France","Italy"}, but what I really need is to be able to
use a cell reference eg {G5,G6} instead. How can I change the formula to do
this?

Thanks
Miranda

"Bob Phillips" wrote:

=SUMPRODUCT(--(C1:C10<"Brand
A"),--(ISNUMBER(MATCH(B1:B10,{"France","Italy"},0))),A1: A10)

--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)

"Inter" wrote in message
...
Thanks for both of these ... very helpful.

Follow up question though - how about if i want to sum the cells in column

A
that have "France" OR "Italy" in column B but DO NOT have "Brand A" (i.e.

do
have anything apart from "Brand A") in column C?

Cheers
Stuart




  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default sumproduct formula (multiple criteria)

=SUMPRODUCT(--(C1:C10<"Brand
A"),--(ISNUMBER(MATCH(B1:B10,G5:G6,0))),A1:A10)

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"merry_fay" wrote in message
...
Hi,

I've looked at this formula & can get it to work for my data if I type in
the criteria eg {"France","Italy"}, but what I really need is to be able
to
use a cell reference eg {G5,G6} instead. How can I change the formula to
do
this?

Thanks
Miranda

"Bob Phillips" wrote:

=SUMPRODUCT(--(C1:C10<"Brand
A"),--(ISNUMBER(MATCH(B1:B10,{"France","Italy"},0))),A1: A10)

--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)

"Inter" wrote in message
...
Thanks for both of these ... very helpful.

Follow up question though - how about if i want to sum the cells in
column

A
that have "France" OR "Italy" in column B but DO NOT have "Brand A"
(i.e.

do
have anything apart from "Brand A") in column C?

Cheers
Stuart






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Dynamic range names, multiple criteria, sumproduct [email protected] Excel Discussion (Misc queries) 1 September 20th 05 02:58 AM
multiple criteria in if or sumproduct tbird0566 Excel Worksheet Functions 1 September 19th 05 09:11 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 07:48 PM
Sumproduct with a vLookup, multiple criteria Tom F Excel Worksheet Functions 3 May 6th 05 04:28 PM
Countif formula with multiple criteria ie >30 and <60? Dali Excel Worksheet Functions 2 January 7th 05 04:49 PM


All times are GMT +1. The time now is 05:41 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"