countif and sumif

P

pbuscio

I am trying to count the cells in a sheet that have a certain year and a certain month. I am not sure how to write the criteria. Any help would be appreciated.

Thanks
 
C

Claus Busch

Hi,

Am Fri, 10 Aug 2012 08:32:25 -0700 (PDT) schrieb (e-mail address removed):
I am trying to count the cells in a sheet that have a certain year and a certain month. I am not sure how to write the criteria. Any help would be appreciated.

your values in A1:A100, year = 2010, month = may:
=SUMPRODUCT(--(YEAR(A1:A100)=2010),--(MONTH(A1:A100)=5))


Regards
Claus Busch
 
P

pbuscio

Hi, Am Fri, 10 Aug 2012 08:32:25 -0700 (PDT) schrieb > I am trying to count the cells in a sheet that have a certain year and a certain month. I am not sure how to write the criteria. Any help would be appreciated. your values in A1:A100, year = 2010, month = may: =SUMPRODUCT(--(YEAR(A1:A100)=2010),--(MONTH(A1:A100)=5)) Regards Claus Busch -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2

Thanks. That works for counting. How about if I need to add the value from another range based on the counted cells. Like sumif?
 
C

Claus Busch

Hi,

Am Fri, 10 Aug 2012 08:56:12 -0700 (PDT) schrieb (e-mail address removed):
Thanks. That works for counting. How about if I need to add the value from another range based on the counted cells. Like sumif?

the values to sum in B1:B100:
=SUMPRODUCT(--(YEAR(A1:A100)=2010),--(MONTH(A1:A100)=5),B1:B100)


Regards
Claus Busch
 

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