- column
- TECHNOLOGY Q&A
Calculate length of service in years and months
Please note: This item is from our archives and was published in 2005. It is provided for historical reference. The content may be out of date and links may no longer function.
Related
‘We’re still the thinkers’ — a reminder for tax pros in the AI era
Incorporating prompt engineering into the accounting curriculum
Create a dynamic to-do list with Excel’s checkboxes
TOPICS
Q. Is there an easy way to calculate how long in years and months the employees have been working for my company?
A. Excel can do that, as long as you’ve listed all the employees in a database. If so, place them in an Excel worksheet with their start date in one cell and end date (which would be the current date, I assume) in an adjacent cell. Then insert this formula (where the start dates are in the D column and the end dates in the E column):
=DATEDIF(D2,E2,”y”) & ” years, ” & DATEDIF(D2,E2,”ym”) & ” months “.
Here’s what it looks like in Excel (color added for clarity):

Be sure to format the D and E columns to display dates (see screenshot below).
