» Counting the Number of Dates with Matching Month Criteria
CATEGORY - Excel Counting
VERSION - All Microsoft Excel Versions
The following formula was written to count the number of dates in column A that matched the month criteria in cell B2.
=COUNTIF(MONTH(A2:A6),B2)
However, on entry, an error occurred and the formula could not be used.
Solution 1:
Use the SUMPRODUCT and MONTH functions as shown in the following formula:
=SUMPRODUCT(--(MONTH(A2:A6)=B2))
Solution 2:
Use the SUM, IF, and MONTH functions as shown in the following Array formula:
{=SUM(IF(MONTH(A2:A6)=B2,1))}
Book Store:
Recommended Books:
- Business Plans For Dummies®
- The Financial Numbers Game: Detecting Creative Accounting Practices
- Special Edition Using Microsoft Access 2002
- Infectious Greed: How Deceit and Risk Corrupted the Financial Markets
- Managing by the Numbers: A Commonsense Guide to Understanding and Using Your Company's Financials: An Essential Resource for Growing Businesses
- Keys to Reading an Annual Report (Barron's Business Keys)
No comments have been submitted.

