Forum Discussion
Adam08780
Aug 11, 2023Copper Contributor
Count Dates in Month
I've been trying formulas online but cannot get them to work. How to count by month - count month with COUNTIFS and EOMONTH (spreadsheetweb.com) I want to count the number of times a UK date appears...
- Aug 11, 2023
=COUNTIFS($A$2:$A$4,"<="&EOMONTH(C2,0),$A$2:$A$4,">"&EOMONTH(C2,-1))
This formula returns the intended result in my sheet. The values in cells C2 and C3 are 01.01.2023 and 01.02.2023 which are formatted as "mmmm".
OliverScheurich
Aug 11, 2023Gold Contributor
=COUNTIFS($A$2:$A$4,"<="&EOMONTH(C2,0),$A$2:$A$4,">"&EOMONTH(C2,-1))
This formula returns the intended result in my sheet. The values in cells C2 and C3 are 01.01.2023 and 01.02.2023 which are formatted as "mmmm".