I have a field that I import with a date. Here is some sample data:
2012-11-05 rev. 003
2012-11-01 rev. 002
2012-11-09 rev. 009
2012-11-12 rev. 021
2012-11-20 rev. 022
2012-11-20 rev. 022
2012-11-17 rev. 005
I need to keep this field as it is and be able to report number of values that are older than 7 days so I created another column CA that reformats this data so it looks like this:
11/05/2012
11/01/2012
11/09/2012
11/12/2012
11/20/2012
11/20/2012
11/17/2012
The problem is that although these look like dated they are only text so this formula =COUNTIF(CA:CA,"-(=TODAY())>7") does not work.
I am good at VBA but I would rather keep this on the sheet. Any ideas?
2012-11-05 rev. 003
2012-11-01 rev. 002
2012-11-09 rev. 009
2012-11-12 rev. 021
2012-11-20 rev. 022
2012-11-20 rev. 022
2012-11-17 rev. 005
I need to keep this field as it is and be able to report number of values that are older than 7 days so I created another column CA that reformats this data so it looks like this:
11/05/2012
11/01/2012
11/09/2012
11/12/2012
11/20/2012
11/20/2012
11/17/2012
The problem is that although these look like dated they are only text so this formula =COUNTIF(CA:CA,"-(=TODAY())>7") does not work.
I am good at VBA but I would rather keep this on the sheet. Any ideas?