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

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.
 
P

Pete_UK

If your dates are in column D, then you could use this:

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

Hope this helps.

Pete
 
J

Jacob Skaria

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top