I have to count the entry which contains "January".

  • Thread starter Thread starter gaurav
  • Start date Start date
G

gaurav

I have a data file which contains data date wise, now i want to count the no
of entries which have done in January. The data are not in seriol order like
and the entries could be increase. I have tried my best to get the answer but
not suceed yet.Could any one plz help me.?
 
If the entries are real Excel dates: MONTH(A1) will give the month number
=SUMPRODUCT(--(MONTH(A1:A100)=1)) will count how many of the dates are
January dates
best wishes
 
Back
Top