|  

» Avoiding Errors when Counting Date Values that Meet Specified Criteria

Problem:

The range A2:B9 contains a series of dates and the corresponding number of hours worked on each of them.
An empty cell in column B that matches a date in column A indicates that 0 hours were worked on that day.
The range may also include blank rows.
The following formula was created to count the number of days in January for which 0 hours were worked:
=SUMPRODUCT((MONTH(A2:A9)=1)*(ISBLANK(B2:B9)))
However, an incorrect result of 3 was returned.

Solution:

Use the SUMPRODUCT, MONTH, ISBLANK, and ISNUMBER functions as shown in the following formula:
=SUMPRODUCT((MONTH(A2:A9)=1)*(ISBLANK(B2:B9))*(ISNUMBER(A2:A9)))

Rate This Tip
12 34 5
Rating:     Views: 5381
No comments have been submitted.
Click here to post comment
For Registered Users
Name
Comment Title
Comments