Hi,
I'm assuming you want to know whether the expiry date is greater than a year ago rather than EXACTLY a year ago.
With the expiry date in A1 add a conditiona format to A1
Formula:
EOMONTH(A1,11)+DAY(A1)<TODAY()
In order to extract the >1 year values you'll need a helper column, say B1 in which you have the formula
Formula:
=IF(EOMONTH(A1,11)+DAY(A1)<TODAY(),"Y","")
Then you could use an Advanced Data Filter to extract all the column B values using "Y" as the criteria. ALternatively you may find it it sufficient to use a simple autofilter on column B and select "Y".
Bookmarks