Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am using Excel 2003. I have a date and time, each in its own column. I
also have another date and time, each in its own column. I need to find the exact elapsed time between the two date/time sets, and most of the time, the elapsed time is over 24 hours. How do I write the formula to give me the exact elapsed time? Thank you for any help you can give. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=A2-A1
where A2 is end time and A1 is start time, then format result custom as [hh]:mm -- Regards, Peo Sjoblom "Alistair" wrote in message ... I am using Excel 2003. I have a date and time, each in its own column. I also have another date and time, each in its own column. I need to find the exact elapsed time between the two date/time sets, and most of the time, the elapsed time is over 24 hours. How do I write the formula to give me the exact elapsed time? Thank you for any help you can give. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Alistair:
Let us say yor starting time is in cell C4, and ending time is in cell D4, then you can use the following ... =D4-C4 ... and ude Custom Number Format [hh]:mm to get difference in Hours and Minutes However if you want the answer in Days, Hours, and Minutes then let us try ... =INT(D4-C4)&" day "&TEXT(MOD(D4-C4,1),"hh:mm") "Alistair" wrote: I am using Excel 2003. I have a date and time, each in its own column. I also have another date and time, each in its own column. I need to find the exact elapsed time between the two date/time sets, and most of the time, the elapsed time is over 24 hours. How do I write the formula to give me the exact elapsed time? Thank you for any help you can give. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Yogi,
I was wondering if you could help me on something...For instance, I may have: C2 C3 C4 C5 | 12/24/2006 | 13:56| and |12/29/2006 | 09:45 | everything in its own separate column, and elapsed time is almost 5 days. I need a formula that takes into account the dates, and finds the exact elapsed time between the two dates and times, whether it occurs in the same day, or over several. What do you think? -- Alistair Maclean "Yogi Anand--www.energyefficientbuild.com" wrote: Hi Alistair: Let us say yor starting time is in cell C4, and ending time is in cell D4, then you can use the following ... =D4-C4 ... and ude Custom Number Format [hh]:mm to get difference in Hours and Minutes However if you want the answer in Days, Hours, and Minutes then let us try ... =INT(D4-C4)&" day "&TEXT(MOD(D4-C4,1),"hh:mm") "Alistair" wrote: I am using Excel 2003. I have a date and time, each in its own column. I also have another date and time, each in its own column. I need to find the exact elapsed time between the two date/time sets, and most of the time, the elapsed time is over 24 hours. How do I write the formula to give me the exact elapsed time? Thank you for any help you can give. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUM(C4:C5)-SUM(C2:C3)
format as [hh]:mm -- Regards, Peo Sjoblom "Alistair" wrote in message ... Yogi, I was wondering if you could help me on something...For instance, I may have: C2 C3 C4 C5 | 12/24/2006 | 13:56| and |12/29/2006 | 09:45 | everything in its own separate column, and elapsed time is almost 5 days. I need a formula that takes into account the dates, and finds the exact elapsed time between the two dates and times, whether it occurs in the same day, or over several. What do you think? -- Alistair Maclean "Yogi Anand--www.energyefficientbuild.com" wrote: Hi Alistair: Let us say yor starting time is in cell C4, and ending time is in cell D4, then you can use the following ... =D4-C4 ... and ude Custom Number Format [hh]:mm to get difference in Hours and Minutes However if you want the answer in Days, Hours, and Minutes then let us try ... =INT(D4-C4)&" day "&TEXT(MOD(D4-C4,1),"hh:mm") "Alistair" wrote: I am using Excel 2003. I have a date and time, each in its own column. I also have another date and time, each in its own column. I need to find the exact elapsed time between the two date/time sets, and most of the time, the elapsed time is over 24 hours. How do I write the formula to give me the exact elapsed time? Thank you for any help you can give. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Peo,
Thank you!! -- Alistair Maclean "Peo Sjoblom" wrote: =SUM(C4:C5)-SUM(C2:C3) format as [hh]:mm -- Regards, Peo Sjoblom "Alistair" wrote in message ... Yogi, I was wondering if you could help me on something...For instance, I may have: C2 C3 C4 C5 | 12/24/2006 | 13:56| and |12/29/2006 | 09:45 | everything in its own separate column, and elapsed time is almost 5 days. I need a formula that takes into account the dates, and finds the exact elapsed time between the two dates and times, whether it occurs in the same day, or over several. What do you think? -- Alistair Maclean "Yogi Anand--www.energyefficientbuild.com" wrote: Hi Alistair: Let us say yor starting time is in cell C4, and ending time is in cell D4, then you can use the following ... =D4-C4 ... and ude Custom Number Format [hh]:mm to get difference in Hours and Minutes However if you want the answer in Days, Hours, and Minutes then let us try ... =INT(D4-C4)&" day "&TEXT(MOD(D4-C4,1),"hh:mm") "Alistair" wrote: I am using Excel 2003. I have a date and time, each in its own column. I also have another date and time, each in its own column. I need to find the exact elapsed time between the two date/time sets, and most of the time, the elapsed time is over 24 hours. How do I write the formula to give me the exact elapsed time? Thank you for any help you can give. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
EXCEL 2003 Dates & elapsed time | Excel Discussion (Misc queries) | |||
calculate elapsed time between dates and times | Excel Worksheet Functions | |||
Ref: Formula to calculate elapsed time between certain dates and t | Excel Discussion (Misc queries) | |||
how do i find # hrs & mins. between 2 different dates and times | Excel Worksheet Functions | |||
Formula to calculate elapsed time between certain dates and times | Excel Discussion (Misc queries) |