View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default SUMPRODUCT within set dates

count what dates are in october, november,
december and 2010 and beyond.
=SUMPRODUCT(-(LEFT(nd!$B:$B,2)="BD"),-(nd!$EC:$EC=10/1/2009<10/31/2009))


Your formula doesn't match your explanation. Your formula is attempting to
only count for the month of OCT 2009 yet your explanation says you want to
count from OCT 2009 going forward.

To count from OCT 2009 going forward:

Try this:

=SUMPRODUCT(--(LEFT(nd!$B:$B,2)="BD"),--(nd!$EC:$EC=DATE(2009,10,1)))

To count only for OCT 2009:

=SUMPRODUCT(--(LEFT(nd!$B:$B,2)="BD"),--(TEXT(nd!$EC:$EC,"mmyyyy")="102009"))

I assume you're using Excel 2007 in order to reference the entire columns?

--
Biff
Microsoft Excel MVP


"Tom" wrote in message
...
Hello,

I have some data that I need to count based on two criteria.
The tab name for the data is "nd".
The first two characters of column B shows the market ID. I then need it
to
go to column EC and count what dates are in october, november, december
and
2010 and beyond.

This is the formula I've been using, but I can't get the date format
correct:

=SUMPRODUCT(-(LEFT(nd!$B:$B,2)="BD"),-(nd!$EC:$EC=10/1/2009<10/31/2009))

Can someone tell me how I should be entering in the date?

Thanks,
Tom