View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
mardoh mardoh is offline
external usenet poster
 
Posts: 4
Default Summary of Difference between dates in years, months, days

I need to calculate the difference between 2 dates and then total them.
Here's what I have so far:

From To Length of
Service
01/09/2003 31/01/2010 6y 4m 30d
01/06/2000 30/11/2002 2y 5m 29d
Total of Service: ??????????

I've used the following formula to calculate the total days worked:
=DATEDIF(A4,B4,"Y")&"y "&DATEDIF(A4,B4,"ym")&"m "&DATEDIF(A4,B4,"md")&"d"

Problem is I don't know how to add the two together to get the total length
of service.

Thanks