Time Duration Issue

KuraiChikara

Board Regular
Joined
Nov 16, 2016
Messages
111
Office Version
  1. 2013
Platform
  1. Windows
I have a time duration issue once PM runs into AM.
I will give an example of a working process (AM to PM) and one that doesn't work (PM to AM)

Working Example:
A1: Has 11:50
B1: Has 12:00
C1 Formula: =B1-A1 (this will equal 00:10 or 10 mins has gone by)


Non-Working:
A1: Has 23:50
B1: Has 00:00
C1 Formula:???????

I've tried =B1-A1 and all I get are the never ending pound symbols #######, I've also tried =A1-B1 and that gives me 23:50 which is wrong.

The result is simple, the duration from 23:50 to 00:00 is 10 mins, but I don't know how to show that.
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
The sensible policy is to alwasy use the full Excel DateTime serial number. So when the formatting is removed, May 12, 2019 in A1 is [FONT=Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif]43597.9930555556 and B1 is [FONT=Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif]43598, for a difference of [FONT=Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif]0.00694444444525288. Multiply that by 24 and by 60 and that is ten minutes. Using the entire DateTime serial number means you won't have this tick-over problem.[/FONT][/FONT][/FONT]

<colgroup><col></colgroup><tbody>
</tbody>
 
Upvote 0
Thank you but I did find a different route. I used the MOD function:
A1: 23:50
B1: 0:00
C1: =MOD((B1-A1),1)

This gives me my result of 0:10
 
Upvote 0

Forum statistics

Threads
1,215,692
Messages
6,126,226
Members
449,303
Latest member
grantrob

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top