count current months occurrences

redspanna

Well-known Member
Joined
Jul 27, 2005
Messages
1,602
Office Version
  1. 365
Platform
  1. Windows
Hello all

as per excel sheet example below, I would like a formula that will check down the dates in column A and count the current months occurrences.

Running (version 2).xlsb.xlsm
ABCD
111-Jan-21Apr 212
215-Jan-21Mar 214
317-Jan-21Feb 212
418-Feb-21Jan 213
519-Feb-21
602-Mar-21
704-Mar-21
806-Mar-21
911-Mar-21
1001-Apr-21
1104-Apr-21
12
Sheet1
Cell Formulas
RangeFormula
C1C1=TEXT(TODAY(),"Mmm yy")
C2C2=TEXT(TODAY()-30,"Mmm yy")
C3C3=TEXT(TODAY()-65,"Mmm yy")
C4C4=TEXT(TODAY()-90,"Mmm yy")


So the formula in cell C1 shows current month is Apr21 and I'd like a formula then placed into cell D1 to give the result shown in D1

Thanks in advance
 

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
How about
+Fluff 1.xlsm
ABCD
1
211/01/202101/04/20212
315/01/202101/03/20214
417/01/202101/02/20212
518/02/202101/01/20213
619/02/2021
702/03/2021
804/03/2021
906/03/2021
1011/03/2021
1101/04/2021
1204/04/2021
13
Main
Cell Formulas
RangeFormula
C2C2=EOMONTH(TODAY(),-1)+1
D2:D5D2=COUNTIFS(A:A,">="&C2,A:A,"<="&EOMONTH(C2,0))
C3C3=EOMONTH(TODAY(),-2)+1
C4C4=EOMONTH(TODAY(),-3)+1
C5C5=EOMONTH(TODAY(),-4)+1
 
Upvote 0
How about
+Fluff 1.xlsm
ABCD
1
211/01/202101/04/20212
315/01/202101/03/20214
417/01/202101/02/20212
518/02/202101/01/20213
619/02/2021
702/03/2021
804/03/2021
906/03/2021
1011/03/2021
1101/04/2021
1204/04/2021
13
Main
Cell Formulas
RangeFormula
C2C2=EOMONTH(TODAY(),-1)+1
D2:D5D2=COUNTIFS(A:A,">="&C2,A:A,"<="&EOMONTH(C2,0))
C3C3=EOMONTH(TODAY(),-2)+1
C4C4=EOMONTH(TODAY(),-3)+1
C5C5=EOMONTH(TODAY(),-4)+1


Perfect - thanks so much
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,386
Messages
6,119,217
Members
448,876
Latest member
Solitario

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