I am trying to count the number of cells that have date values equal to or less than today's date.
The formula is in A1, and the contents of A2
2 is as follows:
A2 = 01/01/2004
B2 = 02/01/2004
C2 = 03/01/2004
D2 = 04/01/2004
=COUNTIF(A2
2,"01/1/2004")
This formula results in a value of 1. How do I change it to swap the criteria's static date to either NOW() or TODAY()? When I do that, such as with
=COUNTIF(A2
2,"<=TODAY()")
then it just results in 0.
Help!
The formula is in A1, and the contents of A2
A2 = 01/01/2004
B2 = 02/01/2004
C2 = 03/01/2004
D2 = 04/01/2004
=COUNTIF(A2
This formula results in a value of 1. How do I change it to swap the criteria's static date to either NOW() or TODAY()? When I do that, such as with
=COUNTIF(A2
then it just results in 0.
Help!