Problem with a sumproduct

S

Sasikiran

Dear,

I am struggling with a formula to count the number of mails received on a
particular day within a particular time slot. This data is copied from an
outlook and sorted according using a macro.

In sheet1 i have the raw data in column A to D as From, Subject, Date and
Time respectively. The date is in format 14-May and time in the format 15:00.
Now in the sheet2 in a cell I need a formula to calculate the number of mails
received on 20-Jun from 15:00 to 15:59 hours.

I am trying to use the below formula but is not identifying the date value
in column C and not giving the desired result.

=SUMPRODUCT((Raws!D2:D5000>=--"15:00:00")*(Raws!D2:D5000<=--"15:59:59")*(Raws!C2:C5000="20-Jun"))

Please help me in correcting the above formula or suggest me another one to
get the desired result.

Thanks in advance.
 
S

Sean Timmons

=COUNTIF(Raws!D2:D5000>= DATEVALUE("6/20/2009 3:00 PM") -
COUNTIF(Raws!D2:D5000>= DATEVALUE("6/20/2009 4:00 PM")

should be even easier
 
T

T. Valko

=SUMPRODUCT((Raws!D2:D5000>=--"15:00:00")*(Raws!D2:D5000<=--"15:59:59")*(Raws!C2:C5000="20-Jun"))

If the times are true Excel times and the dates are true Excel dates:

=SUMPRODUCT(--(HOUR(Raws!D2:D5000)=15),--(Raws!C2:C5000=DATE(2009,6,20)))
 
S

Sasikiran

Dear Valko,

The formula you've suggested isn't helping according to my need :(

=SUMPRODUCT(--(HOUR(Raws!D2:D5000)=15),--(Raws!C2:C5000=DATE(2009,6,20)))
 
T

T. Valko

Oh well!

--
Biff
Microsoft Excel MVP


Sasikiran said:
Dear Valko,

The formula you've suggested isn't helping according to my need :(

=SUMPRODUCT(--(HOUR(Raws!D2:D5000)=15),--(Raws!C2:C5000=DATE(2009,6,20)))
 

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

SUMPRODUCT Problem 2
SUMPRODUCT 7
Need a formula with SUMPRODUCT function 3
sumifs problem 1
SUMIF 7
sumproduct with date range 4
Problem with SUMPRODUCT 5
advice on rounding or ceilng a 24 hour time value 3

Top