Count the Number of Date Entries per Month with VBA Macro

skirdZ

New Member
Joined
Jun 10, 2019
Messages
6
Hi, I’m new to VBA and I’m trying to modify the code below.
I have a large workbook with separate sheets assigned to different products. Eachsheet has numerous date entries. I’d like to have the macro count the number ofentries per month in “Sheet1” with the output in “Sheet11”.


The code below works if the dates and the output are in thesame active worksheet, however, when I try to assign “a” to Sheet1 and “itm” to“Sheet11” I get a compile error.

“E2” is equal to “2019”

Any help will be very much appreciated.


Sub MonthlyCount()

Dim a As Variant, itm As Variant
Dim b(1 To 12, 1 To 1) As Long, myYear As Long
a = Sheet1.Range("A23", Range("A" &Rows.Count).End(xlUp)).Value
myYear = Range("E2").Value

For Each itm In a
IfSheet11.Year(itm) = myYear Then b(Month(itm), 1) = b(Month(itm), 1) + 1

Next itm
Range("C2").Resize(12).Value = b

End Sub

 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Hi, I’m new to VBA and I’m trying to modify the code below.
I have a large workbook with separate sheets assigned to different products. Eachsheet has numerous date entries. I’d like to have the macro count the number ofentries per month in “Sheet1” with the output in “Sheet11”.


The code below works if the dates and the output are in thesame active worksheet, however, when I try to assign “a” to Sheet1 and “itm” to“Sheet11” I get a compile error.

“E2” is equal to “2019”

Any help will be very much appreciated.


Sub MonthlyCount()

Dim a As Variant, itm As Variant
Dim b(1 To 12, 1 To 1) As Long, myYear As Long
a = Sheet1.Range("A23", Range("A" &Rows.Count).End(xlUp)).Value
myYear = Range("E2").Value

For Each itm In a
If Sheet11.Year(itm) = myYear Then b(Month(itm), 1) = b(Month(itm), 1) + 1

Next itm
Range("C2").Resize(12).Value = b

End Sub

Try this.

You should only refer to the sheet when it comes to a range.

Code:
Sub MonthlyCount()


    Dim a As Variant, itm As Variant
    Dim b(1 To 12, 1 To 1) As Long, myYear As Long
    
    a = [COLOR=#008000]Sheet1[/COLOR].Range("A23", Range("A" & Rows.Count).End(xlUp)).Value
    myYear = [COLOR=#008000]Sheet1[/COLOR].Range("E2").Value
    
    For Each itm In a
        If Year(itm) = myYear Then b(Month(itm), 1) = b(Month(itm), 1) + 1
    Next itm
    [COLOR=#008000]Sheet11[/COLOR].Range("C2").Resize(12).Value = b


End Sub
 
Upvote 0
Thank you.

I think this is close to working.

I get a run time error '1004' "application-defined or object-defined error" for "a".
If I remove "Sheet1" the code works, but I need the data from another sheet.


a = Sheet1.Range("A23", Range("A" & Rows.Count).End(xlUp)).Value</pre>
 
Upvote 0
Thank you.

I think this is close to working.

I get a run time error '1004' "application-defined or object-defined error" for "a".
If I remove "Sheet1" the code works, but I need the data from another sheet.


a = Sheet1.Range("A23", Range("A" & Rows.Count).End(xlUp)).Value

We go back to my scoop:
You should only refer to the sheet when it comes to a range.


Code:
Sub MonthlyCount()


    Dim a As Variant, itm As Variant
    Dim b(1 To 12, 1 To 1) As Long, myYear As Long
    
    a = Sheet1.Range("A23", [COLOR=#008000][B]Sheet1[/B][/COLOR].Range("A" & Rows.Count).End(xlUp)).Value
    myYear = Sheet1.Range("E2").Value
    
    For Each itm In a
        If Year(itm) = myYear Then b(Month(itm), 1) = b(Month(itm), 1) + 1
    Next itm
    Sheet11.Range("C2").Resize(12).Value = b


End Sub
 
Upvote 0

Forum statistics

Threads
1,214,392
Messages
6,119,254
Members
448,879
Latest member
oksanana

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