Count cells between dates

=COUNTIFS(range,">="&date1,range,"<="&date2)
To count the number of cells that contain dates between two dates, you can use the COUNTIFS function. In the example shown, F6 contains this formula:
This formula counts birthdays in the year 2000, that appear in the range C5:C11.
Note: this formula uses the named range "dates", C5:C11.
The COUNTIFS function is built to count cells that meet multiple criteria. In this case, we need to provide two criteria: one criteria for the earlier date and one for the later date. We supply the named range dates (C5:C11) for both criteria.
To construct each date, we use the DATE function:
The DATE function makes it easy to build dates based on year, month, and day arguments that are either hard-coded or supplied as cell references. In the example, month and day are hard-coded, and we get year from column E.
Note: the operators ">=" and "<=" must be entered as text and surrounded by double quotes. This means we must use concatenation (&) to join each operator to each date.
Download 100+ Important Excel Functions
Get over 100 Excel Functions you should know in one handy PDF.