Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a range of cells with dates (mm/dd/yy). I wish to count how many
entries I have in a monthly time period. i.e. how many insances do I have in December 05? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If the dates are in column A, the count is =countif(a:a,"=" &
date(2005,12,1))-countif(a:a,"=" & date(2006,1,1)). In words, count the number of entries dated Dec 05 or later, then subtract the number dated Jan 06 or later. The net is those dated Dec 05. --Bruce "gpoky" wrote: I have a range of cells with dates (mm/dd/yy). I wish to count how many entries I have in a monthly time period. i.e. how many insances do I have in December 05? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT(--(TEXT(A1:A1000,"mmmyy")="Dec05"))
-- HTH Bob Phillips (remove nothere from email address if mailing direct) "gpoky" wrote in message ... I have a range of cells with dates (mm/dd/yy). I wish to count how many entries I have in a monthly time period. i.e. how many insances do I have in December 05? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count Mondays worked in Month | Excel Worksheet Functions | |||
How to count the number of times something occurs within a certain month | Excel Worksheet Functions | |||
Count the occurances of a month in a range of date fields | Excel Worksheet Functions | |||
Count number of days in given month? | Excel Worksheet Functions | |||
PivotTable - Count by Month | Excel Worksheet Functions |