Hi,
There are several ways to do it with native Excel worksheet functions.
For reference, there's a not very well known Excel worksheet function called DATEDIF(), which is not to be confused with the VBA function called DATEDIFF(). I believe only Excel 2000 helpfiles contain any information on it, which is why most users aren't familiar with it. To get
x number of years between two dates you can use it like this:
=DATEDIF(A1,A2,"y")
where A1 contains the earlier date and A2 contains the later date.
For more information about the DATEDIF() worksheet function, have a look at Microsoft Excel MVP Chip Pearson's excellent article:
http://www.cpearson.com/excel/datedif.aspx
Hope that helps...