Convert from 100 units to 60 minutes

dragonmouse

Board Regular
Joined
May 14, 2008
Messages
131
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

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
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,223,911
Messages
6,175,325
Members
452,635
Latest member
laura12345

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