Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

calculate years of completed service

I am trying to get years of service for employees - I have got the HireDate field - which function should  I sue to calculate years of completed service?

TIA

1 Solution

Accepted Solutions
antoniotiman
Master III
Master III

Hi Soumya,

maybe

=Date(Today()-Date(HireDate) ,'YY-MM')

e.g.

=Date(Today()-Date('01/01/2012') ,'YY-MM')

Regards,

Antonio

View solution in original post

2 Replies
antoniotiman
Master III
Master III

Hi Soumya,

maybe

=Date(Today()-Date(HireDate) ,'YY-MM')

e.g.

=Date(Today()-Date('01/01/2012') ,'YY-MM')

Regards,

Antonio

Not applicable
Author

Hi @Antonio

Thank you - I took inspiration from the formula you provided and used the following:

Year(Today())- year([Hire Date])

It is working