Military time Conversion

PlumGr8

Board Regular
Joined
Nov 23, 2017
Messages
136
So I have an excel sheet where I am trying to make it so we don't have to type the ":", meaning I can just type 0200 and have it show 02:00. Which I can do with custom formatting, issue is I also have a formula that is used to calculate the overall time between 2 entries. If I change it so that "0130" converts to "01:30", the time calculation no longer works correctly.

1662713090556.png


The formula currently for calculating time is " =IF(B287=0,"",(B287+E287)*24-(A287+D287)*24) "

But when I enter the information using "00\:00" that formula no longer calculates correctly. Not sure if there is an easy way to do what I what I am trying to do, but essentially whether I type " 0130" or "01:30" I want it to display "01:30".

Thanks for any feedback.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Hi, in my opinion you'd be much better entering the times properly with the ":", I think being able to directly work with the times outweighs the benefits of slightly faster entry.

That said, you could convert those numbers to times using a formula like this:
Excel Formula:
=TIMEVALUE(TEXT(A1,"00\:00"))

So, you'd replace the cell references for the "times" in you current formula with the formula above (obviously adjusting the A1 part).
 
Upvote 0
Replace your references to E287 and D287 with TEXT(E287,"00\:00") and TEXT(D287,"00\:00")
 
Upvote 0
Hi, in my opinion you'd be much better entering the times properly with the ":", I think being able to directly work with the times outweighs the benefits of slightly faster entry.

That said, you could convert those numbers to times using a formula like this:
Excel Formula:
=TIMEVALUE(TEXT(A1,"00\:00"))

So, you'd replace the cell references for the "times" in you current formula with the formula above (obviously adjusting the A1 part).
Do to the excel layout, this isn't an option for me currently, but I know overall that it does work.
 
Upvote 0

Forum statistics

Threads
1,215,949
Messages
6,127,888
Members
449,411
Latest member
AppellatePerson

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