Sumproduct usage?

D

Destrachan

My brain's on overload at the moment, so I'm turning to you guys for
help. I need help w/ a formula that will count the number of sales
that someone had based on a certain date...I thought I could use
sumproduct, but I'm beginning to wonder if I was wrong about that.
The relavant columns are D & M.

Col D Col M
12/24/2009 Andy
12/24/2009 Charles
12/24/2009 Andy
12/25/2009 Charles
 
T

T. Valko

You had the right function in mind.

Try something like this...

Use cells to hold the criteria:

A1 = some date
B1 = some name

=SUMPRODUCT(--(D1:D10=A1),--(M1:M10=B1))

If you're using Excel 2007 then you can use the COUNTIFS function:

=COUNTIFS(D1:D10,A1,M1:M10,B1)
 
D

Destrachan

Excellent, Biff...thank you greatly. :)

You had the right function in mind.

Try something like this...

Use cells to hold the criteria:

A1 = some date
B1 = some name

=SUMPRODUCT(--(D1:D10=A1),--(M1:M10=B1))

If you're using Excel 2007 then you can use the COUNTIFS function:

=COUNTIFS(D1:D10,A1,M1:M10,B1)

--
Biff
Microsoft Excel MVP







- Show quoted text -
 
M

Mike H

Hi,

For a given date
=SUMPRODUCT((D1:D20=DATE(2009,12,24))*(M1:M20="Andy"))

Over a range of date
=SUMPRODUCT((D1:D20>=DATE(2009,12,23))*(D1:D20<=DATE(2009,12,24))*(M1:M20="Andy"))

In practice I would use cell ref's for the criteria
=SUMPRODUCT((D1:D20=A1)*(M1:M20=A2))

Mike
 
T

T. Valko

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


Excellent, Biff...thank you greatly. :)
 
A

Ashish Mathur

Hi,

Create a Pivot table. Drag column D to the row area, column M to the column
area and column M (again) to the data area.

Thank you.

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com
 

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