Counting dates in current month

Tmoske

Board Regular
Joined
Jan 14, 2009
Messages
145
How can I calculate how many cells in a column have the date that falls in the current month.

Thanks,
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Hell Tmoske, welcome to MrExcel

Here's one way

=SUMPRODUCT(--(TEXT(A1:A100,"mmmyy")=TEXT(TODAY(),"mmmyy")))

or, if no dates are future dates you can try

=COUNTIF(A1:A100,">"&TODAY()-DAY(TODAY()))

I'm assuming your dates are in the range A1:A100, change as necessary
 
Upvote 0
Here's another way...

Assuming that A2:A100 contains the data, and B2 contains today's date, try...

=SUMPRODUCT(--(A2:A100-DAY(A2:A100)+1=DATE(YEAR(B2),MONTH(B2),1)))

Hope this helps!
 
Upvote 0
Hello Domenic,

If you go that way wouldn't this be simpler?

=SUMPRODUCT(--(A2:A100-DAY(A2:A100)=B2-DAY(B2)))
 
Upvote 0
Thanks guys,
All methods worked fine but, I did need to reference a certain cell for the current month.

Thank you all for the help!
 
Upvote 0
Hello Tmoske,

If your are looking for VBA macro solution, which can also be used as worksheet formula, try this. The first argument is the range that has dates. Cells that aren't dates are ignored. The second argument is optional to specify the month you want. This is an integer from 1 to 12. If you don't specify a month then the current month is used.
Code:
Function CountDatesByMonth(ByRef Rng As Range, Optional ByVal M As Integer) As Long

  Dim Cell As Range
  Dim Cnt As Long
  
    If M = 0 Then
       M = Month(Now())
    End If
    
    For Each Cell In Rng
      If IsDate(Cell) Then
        If Month(Cell) = M Then Cnt = Cnt + 1
      End If
    Next Cell
    
    CountDatesByMonth = Cnt
    
End Function
Sincerely,
Leith Ross
 
Upvote 0
You guys sure exceeded my expectations. Here is another one I need.

Column A has dates, Column B has dates. I need to count how many dates in colomn B are greater than 10 days of Column A for a certain month.

Thanks,
 
Upvote 0
Try...

=SUMPRODUCT(--(A2:A100-DAY(A2:A100)+1=B2-DAY(B2)+1),--(B2:B100>A2:A100+10))

...where B2 contains any date within the month of interest.

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,214,990
Messages
6,122,626
Members
449,093
Latest member
catterz66

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top