Count within a date range

C

Chad

I have dates in column A and a calculated # in column B. What I need to
determine is for a specified date range from col A, how many in col b are
less than or equal to 1. For example:

Date range = 02/01/2008 to 02/10/2008 should return a value of 2. I can't
figure out the formula to use. I've tried sumif and sumproduct with a count
and countif addition (for the <=1), but I can't get the right result. Any
one have ideas?


Col A Col B
01/30/2008 0
01/31/2008 0
02/01/2008 0
02/05/2008 1
02/11/2008 0
01/24/2008 1
02/06/2008 2
02/15/2008 1
 
R

RagDyeR

Put the start date in C1, and the end date in C2, and try this:

=SUMPRODUCT((A1:A8>=C1)*(A1:A8<=C2)*(B1:B8<=1))
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================


I have dates in column A and a calculated # in column B. What I need to
determine is for a specified date range from col A, how many in col b are
less than or equal to 1. For example:

Date range = 02/01/2008 to 02/10/2008 should return a value of 2. I can't
figure out the formula to use. I've tried sumif and sumproduct with a count
and countif addition (for the <=1), but I can't get the right result. Any
one have ideas?


Col A Col B
01/30/2008 0
01/31/2008 0
02/01/2008 0
02/05/2008 1
02/11/2008 0
01/24/2008 1
02/06/2008 2
02/15/2008 1
 

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