ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Date Calculations as Days (https://www.excelbanter.com/excel-discussion-misc-queries/166768-date-calculations-days.html)

FrankM

Date Calculations as Days
 
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!

Ron Rosenfeld

Date Calculations as Days
 
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

JE McGimpsey

Date Calculations as Days
 
ONe way:

=INT(D8 - C8) & " Days " & ....


In article ,
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!


Jim Thomlinson

Date Calculations as Days
 
Check the time to see if you need to subtract a day or not... Something like
this...

=DATEDIF(C8,D8,"d")-IF(MOD(C8,1)MOD(D8,1),1,0)&" Days "&HOUR(D8-C8)&" Hours
"&MINUTE(D8-C8)&" Minutes "&SECOND(D8-C8)&" Seconds "
--
HTH...

Jim Thomlinson


"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!


FrankM

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


FrankM

Date Calculations as Days
 
AWESOME. It worked perfectly! Thank you.

I used this one and it was great!



"JE McGimpsey" wrote:

ONe way:

=INT(D8 - C8) & " Days " & ....


In article ,
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!



FrankM

Date Calculations as Days
 
This way did seem to work. Thank you for your reply, I'm gonna havta tuck
this one away in my memory. But I decided to use the INT calculation. There
seems to be more than one way to accomplish things.

Thank you!


"Jim Thomlinson" wrote:

Check the time to see if you need to subtract a day or not... Something like
this...

=DATEDIF(C8,D8,"d")-IF(MOD(C8,1)MOD(D8,1),1,0)&" Days "&HOUR(D8-C8)&" Hours
"&MINUTE(D8-C8)&" Minutes "&SECOND(D8-C8)&" Seconds "
--
HTH...

Jim Thomlinson


"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!



All times are GMT +1. The time now is 09:53 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com