Avoiding False Results when Counting Dates Matching Specified Criteria

Problem:

Column A contains dates formatted as "mm/dd/yyyy".
When using the following COUNTIF formula to count the number of dates after April 1st, 2005:
=COUNTIF(A2:A6,">"&--"04/01/05")
A false result of 4 was returned.

Solution 1:

To avoid any format related problems, use the COUNTIF and DATE functions as shown in the following formula:
=COUNTIF(A2:A6,">"&DATE(2005,4,1))

Solution 2:

Use the COUNTIF function as shown in the following formula:
=COUNTIF(A2:A6,">"&--"2005-04-01")

Leave a Reply

Your email address will not be published. Required fields are marked *

Terms and Conditions of use

The applications/code on this site are distributed as is and without warranties or liability. In no event shall the owner of the copyrights, or the authors of the applications/code be liable for any loss of profit, any problems or any damage resulting from the use or evaluation of the applications/code.