Hi there experts-- I'm currently using this formula to calculate employee length of service, but it is adding the months and years together (so the total years are too high):
=ROUND(ROUND((NETDAYS([Hire Date]@row, Today@row) / 365) * 12) / 12) + "yrs " + MOD(ROUND((NETDAYS([Hire Date]@row, Today@row) / 365) * 12), 12) + "mo"
Is there a formula I can use that will show 1 yr 10 mo or 1 yr 9 mo 19days? Either would work as long as it isn't adding the extra year in.
Thanks!