Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Something like:
=COUNTIF(A:A,"<"&TODAY()) -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "Bill T" wrote: 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. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If your dates are in column D, then you could use this:
=COUNTIF(D:D,"<"&TODAY()) Hope this helps. Pete On Aug 19, 5:33*pm, Bill T <Bill wrote: 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. * |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 --------------- Jacob Skaria "Bill T" wrote: 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. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count Dates <Today? | Excel Discussion (Misc queries) | |||
Count Days more than 180 days prior to today | Excel Worksheet Functions | |||
Find (Today-21) in a range of dates | Excel Discussion (Misc queries) | |||
Count the number of dates in a range that are earlier than today. | Excel Worksheet Functions |