Counting Dates

D

Dilly

Column A contains a list of dates that a call was made to a Helpdesk, column
B contains a list of dates giving the Programmed Response dates for each call
to the helpdesk. How do i establish those calls to the Heldesk made in April
2009 AND that also have a programmed response date of April 2009 ?? To make
matters a little more difficult the dates are not a continuous string of
dates and are seperated (randomly) by text. I have been provided with the
folrmula below but it doesn't work :0(

=SUMPRODUCT(--(TEXT(A2:A14,"yyyy\-mm;;;")="2009-02"))*(--(TEXT(B2:B14,"yyyy\-mm;;;")="2009-02"))
 
L

Luke M

There were too many parenthesis in that formula. Corrected formula, for April:

=SUMPRODUCT((TEXT(A2:A14,"yyyy\-mm;;;")="2009-04")*(TEXT(B2:B14,"yyyy\-mm;;;")="2009-04"))
 

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