Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am calculating the difference between times. C20 reflects the start time
11:55 PM and E20 reflects the end time 12:15 AM. How do I show the time difference in minutes? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this
=E20-C20+(E20<C20) Apply a custom format of [mm] Mike "ANYX" wrote: I am calculating the difference between times. C20 reflects the start time 11:55 PM and E20 reflects the end time 12:15 AM. How do I show the time difference in minutes? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
One way =DATE(LEFT(A1,4),MID(A1,5,2),RIGHT(A1,2)) or select the date then Data|Text to columns - Next - Next - Select Date - YMD Finish Mike "ANYX" wrote: I am calculating the difference between times. C20 reflects the start time 11:55 PM and E20 reflects the end time 12:15 AM. How do I show the time difference in minutes? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
oops wrong thread
"Mike H" wrote: Hi, One way =DATE(LEFT(A1,4),MID(A1,5,2),RIGHT(A1,2)) or select the date then Data|Text to columns - Next - Next - Select Date - YMD Finish Mike "ANYX" wrote: I am calculating the difference between times. C20 reflects the start time 11:55 PM and E20 reflects the end time 12:15 AM. How do I show the time difference in minutes? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=MOD(E20-C20,1)*24*60 and format as General or Number
-- David Biddulph ANYX wrote: I am calculating the difference between times. C20 reflects the start time 11:55 PM and E20 reflects the end time 12:15 AM. How do I show the time difference in minutes? |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
And one mo
=mod(e20-c20,1) Regards, Fred. "ANYX" wrote in message ... I am calculating the difference between times. C20 reflects the start time 11:55 PM and E20 reflects the end time 12:15 AM. How do I show the time difference in minutes? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to calculate the difference between two different times. | Excel Worksheet Functions | |||
Difference between two times | Excel Discussion (Misc queries) | |||
Difference between date and times | Excel Discussion (Misc queries) | |||
Difference in Times | Excel Discussion (Misc queries) | |||
Difference between 2 times and dates | Excel Worksheet Functions |