Thread: Time formats
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Pete_UK Pete_UK is offline
external usenet poster
 
Posts: 8,856
Default Time formats

You can convert those values into Excel times using this:

=TIME(LEFT(A2,2),RIGHT(A2,2),0)

then apply Format | Cells to the cell to set it up to display as h:mm
AM/PM.

If you don't want to use a helper column, then you can do this:

=TIME(LEFT(B2,2),RIGHT(B2,2),0) -TIME(LEFT(A2,2),RIGHT(A2,2),0) +
(B2<A2)

in C2 - again, format this cell as you require (maybe just h:mm)

Hope this helps.

Pete

On Sep 2, 7:37*am, Carla wrote:
Hello,
Using Excel 2003, I am trying to convert 24 hour times (currently formatted
as general) into h:mm AM/PM. *My ultimate goal is calculate the difference
between times, which sometimes straddles two 24 hour periods. See example
data and current formatting below.
Hope someone can help.
Thanks, *
--
Carla

Arrival time * *Departure time *Difference
2335 * *0250 * *
* * * * 1340 * *
* * * * 0200 * *
* * * * 1400 * *
* * * * 0240 * *
* * * * 1355 * *
* * * * 0130 * *
* * * * 1300 * *
* * * * 0220 * *
* * * * 1435 * *
* * * * 0245 * *
* * * * 0730 * *