Convert from 100 units to 60 minutes

dragonmouse

Board Regular
Joined
May 14, 2008
Messages
129
Office Version
  1. 2016
Platform
  1. Windows
An OLD oracle database I have calculates TIME by 100 units. For example someone who put in 84 hours and 77 units they are really saying 84 hours and 46 minutes. It's frustrating but I have no power to change the database. I can only write a formula. Currently I leave the hours alone and just pull out the last two decimals. The formula I can use for that is: "=cell*60/100". So I have to break apart 84 hours in column B and .77 Mins in column C then I'll use my calculation =c1*60/100 and then concat cells b1 and c1 for 84.46. There's GOT to be an easier single step calculation. Any ideas?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
is the data shows as
84.77
if its in cell A1
=INT(A1)+((60*(A1-TRUNC(A1)))/100)
 
Upvote 0
If you need to convert 84.77 into 84.46, try using =DOLLARFR(A1,60) and rounding the result as needed

If you need to convert 84.77 into 84:46, try using =A1/24 and custom-formatting the cell as [h]:mm
 
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,438
Members
449,083
Latest member
Ava19

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