=COUNTIF formula

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

I have a cloumn of dates and want to enter a formula that will tell how dates
are older than today. I tried =COUNTIF(F11:F369, "<TODAY()") with no sucess.
The best I could get was using the formula and instead of TODAY() I used
1/15/2010.
 
You were pretty close. You have to concatenate the arguement with the value.

=COUNTIF(F11:F369, "<"&TODAY())
 
try:
=COUNTIF(F11:F369,"<"&TODAY())


I have a cloumn of dates and want to enter a formula that will tell how dates
are older than today. I tried =COUNTIF(F11:F369, "<TODAY()") with no sucess.
The best I could get was using the formula and instead of TODAY() I used
1/15/2010.
 
Take Today out of the quotes like this to make today back into a function
insted of text...

=COUNTIF(F11:F369, "<" & TODAY())
 
Back
Top