COUNTIF Dates expired

  • Thread starter Thread starter virtualfunker
  • Start date Start date
V

virtualfunker

I want to count all the dates in a column that have since expired but don't
seem to be able to do it.

Can anyone help please?

Cheers

J.
 
=COUNTIF(A1:A23,"<5/21/2003")
=COUNTIF(range , criteria )

This function will count all dates before May 21, 2003

Regards,
Matthew
 
Depends how you define expired, but if it is earlier than today, then you
could simply use

=COUNTIF(A1:A19,"<"&TODAY())

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Thanks, I didn't have the & in there.

J.


Bob Phillips said:
Depends how you define expired, but if it is earlier than today, then you
could simply use

=COUNTIF(A1:A19,"<"&TODAY())

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Back
Top