HOW TO FIND DIFF. BETW. 2 DATES, IT SHOULD BE IN YRS, MONTH & DAY

G

Guest

iam trying to find out the number of years, months and days an employe worked
in the company and iam trying to find it out by subratcting Joining date from
retirement date and i want the result something like this 25 years 3 months
and 8 days. is the total working period of the employee in the company.

For ex : Joining Date : 20 /1 /2000

Retirement Date : 22 /2 /2001

Then the Total working Period of the Employee is : 1 Year 1 Month and 2 days

I want to know how I can calculate it by using formula
 
E

Eamon

Joining Date : 20 /1 /2000 A1
Retirement Date : 22 /2 /2001 B1


Try...
=DATEDIF(A1,B1,"y") & " years " & INT(DATEDIF(A1,B1,"yd")/7) & " weeks "
&DATEDIF(A1,B1,"yd")- INT(DATEDIF(A1,B1,"yd")/7)*7 & " days"

Eamon
 
E

Eamon

Hi,

Also the formula as given will take account of leap years.
Hope this is of some help to you.

Joining Date : 20 /1 /2000 A1
Retirement Date : 22 /2 /2001 B1

1 Year 4 Weeks 5 Days

=DATEDIF(A1,B1,"y") & " years " & INT(DATEDIF(A1,B1,"yd")/7) & " weeks "
&DATEDIF(A1,B1,"yd")- INT(DATEDIF(A1,B1,"yd")/7)*7 & " days"

Eamon
 
G

Guest

THANKS A LOT, I THINK ITS WORKING LET ME CHECK THE ACCURACY AND IF THERE'S
ANY PROBLEM I WILL POST MY PROBLEM AGAIN, REALLY YOU RELIEVED MY TENSION ONCE
AGAIN THANKS.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top