View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
FrankM FrankM is offline
external usenet poster
 
Posts: 45
Default Date Calculations as Days

AWESOME. It worked perfectly! Thank you.

"Ron Rosenfeld" wrote:

On Tue, 20 Nov 2007 10:05:00 -0800, FrankM
wrote:

I would like the end result to include Days, Hours, Minutes and Seconds.

In one cell I have the first date: 7/19/2006 2:54:51 PM
In a second cell I have the end date: 10/5/2006 2:12:06 PM

I'm trying to calculate the difference but I don't want Months, Months
should be counted as Days. I tried the following formula and I thought it was
going to work but it doesn't ...

=DATEDIF(C8,D8,"d") & " Days "& HOUR(D8-C8) & " Hours " & MINUTE(D8-C8) & "
Minutes " & SECOND(D8-C8) & " Seconds "

The response is 78 Days 23 Hours 17 Minutes 15 Seconds but in reality it
should be 77 Days not 78 Days. The number of Days is 78 if you don't take
into account the time but because of the time it is not technically 78 Days
yet.

Any thoughts?

Please! Help! Please!



A1: start date/time
A2: end date/time

=INT(A2-A1)&" days, " & TEXT(MOD(A2-A1,1),"h"" hrs ""mm"" min ""ss"" sec""")


--ron