View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
scott[_8_] scott[_8_] is offline
external usenet poster
 
Posts: 12
Default Find row of date of previous year

This might work. A1;A4063 is the listing of historical dates by date
and looks for January 1st of the previous year.


=MATCH(DATE(YEAR(TODAY())-1,1,1),(A1:A4063),0)



Michael Singmin wrote:

Hello Group,

I have a column of dates spanning over 3 years and they are sorted to
the latest date.
I am looking for a worksheet function that will deliver the row of the
first date in the previous year.

Thanks,

Michael Singmin