The expression will depend on the data type of two fields implied in your question.
If they are both date fields, you can use
DatePart( "Y", (CDate( "31-Dec-2007" ) - [DateOfBirth] + [DateOfHire] ) )
(or something like that) as an expression. The answer will be in the units you specify for DATEPART. It is been a while since I used it so I'm shooting from the hip. However, that should do your trick.
Now, if either of the date fields is actually just a text field with a date string in it, you also need to use CDate() to convert THOSE dates as well.