Counting Blanks in a list of dates by month

G

Guest

Hi,
I have a spreadsheet set up in the following way

A B C E f
------etc
2 Start Date End Date Apr05 May05 Jun05 Jul05 ----etc
3 1 2 2
2
4 12/03/05 15/05/05
5 15/05/05
6 17/04/05 19/04/05
7 18/04/05

What i want to do is to identify by month a count of any entries that havent
been closed. i though the easiest way would be to check for an entry in the
end date column, if it exists then do nothing.
If there is no entry then, check the start date and add 1 to the count in
each following month upto today().
For some reason however i cannt get it to work it doesnt seem to recognise
"="""

Any help would be appreciated
rgds Paul
 
B

Bob Phillips

In C2

=SUMPRODUCT(--(MONTH($A$2:$A$20)=MONTH(C$1)),--(YEAR($A$2:$A$20)=YEAR(C$1)),--($B$2:$B$20=""))

and copy across

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)
 

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