Example:
A
1 01/10/2009
2 01/09/2009
3 20/09/2009
4 12/10/2009
How can I count the number of cells in column A which contain an October
date. The answer here would be 2.
Thanks
=SUMPRODUCT(--(MONTH(A1:A4)=10))
--
Rick (MVP - Excel)
"JRD" <J...@discussions.microsoft.com> wrote in message
news:ED76B82C-3517-4C1E...@microsoft.com...
So the following data returns 7:
January 22, 2009
July 7, 2009
October 19, 2009
April 11, 2009
May 31, 2009
October 30, 2009
August 9, 2009
March 6, 2009
December 12, 2009
August 21, 2009
February 13, 2009
June 5, 2009
September 7, 2009
April 11, 2009
September 2, 2009
January 24, 2009
June 26, 2009
November 27, 2009
October 9, 2009
August 23, 2009
June 3, 2009
March 29, 2009
March 28, 2009
March 18, 2009
April 22, 2009
March 2, 2009
January 13, 2009
July 13, 2009
July 7, 2009
March 15, 2009
October 30, 2009
July 25, 2009
December 17, 2009
January 25, 2009
January 18, 2009
March 1, 2009
December 25, 2009
December 22, 2009
November 1, 2009
October 15, 2009
January 13, 2009
November 1, 2009
June 14, 2009
December 8, 2009
June 3, 2009
August 7, 2009
October 29, 2009
July 8, 2009
October 4, 2009
January 8, 2009
--
Gary''s Student - gsnu200909
Thanks
"Rick Rothstein" wrote:
> .
>
Example:
> > A B
> > 1 01/10/2009 Cancelled
> > 2 01/09/2009 Reported
> > 3 20/09/2009 Cancelled
> > 4 12/10/2009 Reported
How do I count the number of cells in column B that contain "reported" from
the month of october in column A - in this example the answer is 1.
Thanks
"Rick Rothstein" wrote:
> .
>
--
Rick (MVP - Excel)
"JRD" <J...@discussions.microsoft.com> wrote in message
news:7549D7C1-33DC-469D...@microsoft.com...
=SUMPRODUCT((MONTH(A1:A4)=10)*(B1:B4="Reported"))
--
Rick (MVP - Excel)
"JRD" <J...@discussions.microsoft.com> wrote in message
news:1E9BB493-6BDD-4480...@microsoft.com...
=SUMPRODUCT(--(MONTH(A2:A5)=10),--(B2:B5="reported"))
--
Biff
Microsoft Excel MVP
"JRD" <J...@discussions.microsoft.com> wrote in message
news:1E9BB493-6BDD-4480...@microsoft.com...