counting function

  • Thread starter Thread starter nespa
  • Start date Start date
N

nespa

Need help in counting the text "Closed" in the date range from d5:d100
and the word Closed is in the range f5:d1000.

I am using the following function but I am creating the functio
incorrectly

COUNTIF(SUM((('Test Issues'!D5:D1000)>=VALUE("9/1/2004"))*(( 'Tes
Issues'!D5:D1000)<VALUE("10/11/04"))):SUM('Tes
Issues'!F5:1000),”CLOSED”)

Thanks for your hel
 
I THINK this is what you want - your question was not that clear

sumproduct(('Test Issues'!D5:D1000>=A1)*( 'Tes
Issues'!D5:D1000<B1)*('Test Issues'!F5:1000=CLOSED))

assuming you put the min and max dates in A1 and B
 
Hi duane
small typo :-) -> missing apostrophes

=sumproduct(('Test Issues'!D5:D1000>=A1)*('Test
Issues'!D5:D1000<B1)*('Test Issues'!F5:1000="CLOSED"))
 

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

Back
Top