Thread
:
Average of Years employed
View Single Post
#
3
Posted to microsoft.public.excel.worksheet.functions
Rajesh Mehmi
external usenet poster
Posts: 26
Average of Years employed
Hi Scott
could you not split your formula below
=DATEDIF(D4,E4,"y") & " Yrs, " & DATEDIF(D4,E4,"ym") & " Months"
in the next two columns
for years Column G
=DATEDIF(D4,E4,"y")
for months Column H
=DATEDIF(D4,E4,"ym")
then average them
=SUM(G4:G17)+(QUOTIENT(SUM(H4:H17),12))& " Yrs " & MOD(SUM(H4:H17),12) &"
Months"
--
Best regards
Rajesh Mehmi
"SGee" wrote in message
...
I am trying to find an average length of employment for a group of
employees
at the time of their promotion. I am using the formula below to calculate
each employee's time in service at the date of promotion:
=DATEDIF(D4,E4,"y") & " Yrs, " & DATEDIF(D4,E4,"ym") & " Months"
whe
D4 = beginning employment date
E4 = promotion date
What I would like to do is average the time on the job for the employees
promoted in each group. I cannot simply average the column due (I think)
to
the text in the output.
Any suggestions would be most appreciated. Thanks
Scott
Reply With Quote
Rajesh Mehmi
View Public Profile
Find all posts by Rajesh Mehmi