How do count a cell range that include all dates prior to today?

  • Thread starter Thread starter Bill T
  • Start date Start date
B

Bill T

I have several spreadsheets that track compliance dates. I'm looking for a
formula that I can use to automatically calculate percentages by counting all
dates in a cell range that are prior to todays date.
 
If your dates are in column D, then you could use this:

=COUNTIF(D:D,"<"&TODAY())

Hope this helps.

Pete
 
The below will count the number of dates in Col A which are prior to todays
date..

=COUNTIF(A:A,"<" & TODAY())

If this post helps click Yes
 
Back
Top