COUNT based on 2 criteria

T

timmie7004

I have the formula below that sums the values in Range name
'Purchases' based on 2 criteria. How could I modify this to COUNT the
number of instances of receipts, based on the existing 2 criteria?

=(SUMPRODUCT((Store=123)*(Inventory_No=$I$6),(Purchases))/10)

I've tried =(COUNT((StoreNo=123)*(Inventory_No=$I$6),(Purchases))/10)
and =COUNT((SUMPRODUCT((StoreNo=123)*(Inventory_No=$I$6),(Purchases))/
10))

But they don't give me the correct answer
 
B

Bob Phillips

=SUMPRODUCT(--(Store=123),--(Inventory_No=$I$6))


--
---
HTH

Bob


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

timmie7004

Thank you, but how would that count the number of purchases? (I've
other columns of data in my sheet also)
 
B

Bob Phillips

Try it and see.

--
---
HTH

Bob


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

timmie7004

Just tried that, answer = 7, but should be 2

If I have 10 columns of data and the range name 'Purchases' is in
Column F, how would the formula count the number of receipts, for
Store 123 and Inventory_No in I6, or am I missing something?
 
B

Bob Phillips

That is how that SP formula works. without seeing your data I cannot say why
you get 7 or why you think you should get 2, but assuming Store is column F,
and assuming the formula that you posted woks, this is the same, it just
doesn't multiply by the number of purchases or divide by 10.

--
---
HTH

Bob


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

Bob Phillips

So that formula checks where column A = 126 and Inventory_N o = I6, pure and
simple.

Can you post an example dataset that calculates wrongly?

--
HTH

Bob

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

timmie7004

See below, answer I should get is 2 (receipts of the inventory line)

Store InvID Opening Purchases
123 16 4730 0
123 16 2900 0
123 16 2150 2500
123 16 3870 0
123 16 2950 2750
123 16 5120 0
123 16 4150 0
525 16 6500 0
525 16 4650 0
525 16 4020 0
525 16 3070 0
525 16 2220 1800
525 16 3450 1200
525 16 3880 0
 
B

Bob Phillips

I see why you get 7, there are 7 items where the Store is 123 and the
inventory is 16, but why do you think it should be 2?

--
HTH

Bob

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

Bob Phillips

Using *AND -- is totally redundant.

--
HTH

Bob

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

timmie7004

Thank you Mike, excatly what I need

Bob, was looking to count the number of receipts for a particular
store and inventory item. My example 2 receipts were receeived for the
data in question
 
B

Bob Phillips

What made it hard was that you didn't say ... where the number of purchases

--
HTH

Bob

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

Bob Phillips

BTW, note my comment about redundancy

=SUMPRODUCT(--(Store=123),--(InvID=16),--(Purchases>0))

--
HTH

Bob

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

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