Newbies mershell Posted February 4, 2011 Newbies Posted February 4, 2011 I hope someone will be able to help me with this calculation. I'm trying to calculate employees Lenght of Service (LOS). Example, if an employee 1 started in 1994 and Employee 2 started in 2001. I want to calculate there total years so employee 1 would be at 17 years and employee 2 at 10 years and have it calculate each year. How do I create that formula. Any help would be greatly appreicated.
Russell Barlow Posted February 4, 2011 Posted February 4, 2011 I hope someone will be able to help me with this calculation. I'm trying to calculate employees Lenght of Service (LOS). Example, if an employee 1 started in 1994 and Employee 2 started in 2001. I want to calculate there total years so employee 1 would be at 17 years and employee 2 at 10 years and have it calculate each year. How do I create that formula. Any help would be greatly appreicated. Depending on how your start date is stored, you can do a couple things. Year(Get(CurrentDate)) - Year(empStartDay) - This works if the empStartDay is a date field or a timestamp field. Year(Get(CurrentDate)) - Year(GetasDate(empStartDay)) - This works if the empStartDay is a text field, depending on format.
Newbies mershell Posted February 4, 2011 Author Newbies Posted February 4, 2011 Thank you so much! That worked perfectly!!
Recommended Posts
This topic is 5099 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now