Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default How do I find elapsed time between 2 dates and times?

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default How do I find elapsed time between 2 dates and times?

=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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Banned
 
Posts: 6
Default How do I find elapsed time between 2 dates and times?

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default How do I find elapsed time between 2 dates and times?

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default How do I find elapsed time between 2 dates and times?

=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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default How do I find elapsed time between 2 dates and times?

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
EXCEL 2003 Dates & elapsed time Michell Major Excel Discussion (Misc queries) 3 April 13th 07 12:10 PM
calculate elapsed time between dates and times Jenna Excel Worksheet Functions 2 January 25th 06 04:39 PM
Ref: Formula to calculate elapsed time between certain dates and t DrBarqs Excel Discussion (Misc queries) 2 November 18th 05 11:16 PM
how do i find # hrs & mins. between 2 different dates and times tankerman Excel Worksheet Functions 3 September 13th 05 03:57 PM
Formula to calculate elapsed time between certain dates and times Stadinx Excel Discussion (Misc queries) 6 March 25th 05 07:02 AM


All times are GMT +1. The time now is 06:40 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"