Summing the number of incomplete jobs within a date range -sumprod

D

Deckbeers

Hello,

I need help figuring out a formula that counts the number of incomplete jobs
for a specific worker that are within the next seven days. I would only want
to count the "Date Completed" column if it was blank and within seven days
from today's date. I've tried using sumproduct, but I can't seem to figure
out how to get the date calculations to work properly.

My data looks similar to this

Worker Due Date Date Completed
Bob 1/18/2010 1/13/2010
Bob 1/21/2010
Bob 2/20/2010
Tom 1/20/2010
Tom 2/10/2010 1/10/2010

You help is much appreciated.
 
D

Deckbeers

That's great! It gets me the number for the first worker.

I'm trying to build a summary table, so how would I create those numbers for
each worker? I could be an ID10T and have missed your point. Do I need column
A in there somewhere?
 
L

L. Howard Kittle

Try these:

=SUM(IF(A5:A9="Bob",IF(C5:C9="",1,0),0))

Enter with CTRL + SHIFT + ENTER, you will get { } around the formula. Note
that Bob can be a cell reference (F1 here) from a drop down list.

=SUM(IF(A5:A9=F1,IF(C5:C9="",1,0),0))

Also entered with with CTRL + SHIFT + ENTER.

or with a simple ENTER

=SUMPRODUCT((A5:A9="Bob")*(C5:C9=""))

Which can also be a cell reference for the name and use ENTER.

=SUMPRODUCT((A5:A9=F1)*(C5:C9=""))

HTH
Regards,
Howard
 
D

Don Guillett

If you are referring to MY post, I missed that you wanted for each
worker.Just add the parameter a2:a22="tom"
 
D

Deckbeers

Thank you everyone for providing such great guidance!

I am getting the expected results now, and more importantly my boss will be
off my back for a few days.
 

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