SUNPRODUCT and COUNTIF

G

Guest

I want to count the number of times values in three comumns are met. For
example, column 1 has the rep number, column 2 has the part number and column
3 has the order date. What would the formula look like that tells me how many
widgets did rep1 sell on a certain day? Thanks
 
P

Peo Sjoblom

=SUMPRODUCT(--(Rep_Range="Rep
1"),--(Order_Date_Range=DATE(Year,Month,Day)),--(Part_Range="Part"))

--
Regards,

Peo Sjoblom

(No private emails please)
 
V

Vasant Nanavati

And hopefully, column 4 has the number of widgets sold.

Something like:

=SUMPRODUCT((A1:A100="Rep001")*(B1:B100="Part1001")*(C1:C100=DATEVALUE("6-Ju
n-2005")*(D1:D100))
 

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

CountIf Functions 6
countif 3
Set up a count and countif? 2
Two Condition - search 2
COUNTIF for 2 columns 6
Countif only col a = col b by date 5
countif 1
Countif help needed 6

Top