Convert time clock ins (1/60) to 1/100 with formula

Mers4B

New Member
Joined
Jun 24, 2015
Messages
3
Hello! I am new here, but excited I found this forum. Your help is greatly needed! I just started at a new company and they had not been converting the numbers from 1/60 to 1/100 for the paychecks for over 6 months. There are a lot of employees and doing everyone by hand would take days. Could you help me figure out what formula is necessary to convert 1/60 to 1/100 automatically? Then get the difference necessary to pay the employee?

For example, Susan work 5.35 hours (this was put into payroll). It needs to be 5.83. Difference would be .48 minutes.

Is there any excel formula that would assist me?

:rolleyes:
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Maybe you have to change the , (comma) into a . (dot) for your lokal settings.


Book1
DE
255,355,58
Blad13
Cell Formulas
RangeFormula
E25=LEFT(D25,SEARCH(",",D25,1)-1)&","&INT(RIGHT(D25,2)/60*100)*1
 
Upvote 0
Maybe you have to change the , (comma) into a . (dot) for your lokal settings.

DE
255,355,58

<colgroup><col style="width: 25pxpx"><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Blad13

Worksheet Formulas
CellFormula
E25=LEFT(D25,SEARCH(",",D25,1)-1)&","&INT(RIGHT(D25,2)/60*100)*1

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

Thanks for help! Do I have to change the commas in the formula as well? Currently, it is stating NO NAME. Below is the formula inserted with the box number changes...

D2E2
5.35=LEFT(D2,SEARCH(",",D2,1)-1)&","&INT(RIGHT(D2,2)/60*100)*1

<tbody>
</tbody>

I am not great with excel, so thanks for the help.
 
Upvote 0
So if 5.35 is 5 Hours 35 minutes and you want decimal time calculated...
=INT(D18)+(MOD(D18,1)*100/60)

(Are decimals greater than .59 checked as errors?)
 
Upvote 0
Maybe you have to change the , (comma) into a . (dot) for your lokal settings.
What comma? When I look at Message #1, I see a dot between the 5 and 35 and the 5 and 83. Anyway, assuming the decimal point is a dot, this formula should do the conversion the OP seeks...

=24*SUBSTITUTE(A1,".",":")

If the data really has a comma, then just change the dot in my formula to a comma.
 
Upvote 0
Thank you all for the help, but SpillerBD's formula was perfect! Y'all just saved me hours and hours of work. Thanks so much! :)
 
Upvote 0
Thank you all for the help, but SpillerBD's formula was perfect! Y'all just saved me hours and hours of work. Thanks so much! :)

Problem solved ...

... so just for the record, you could also use the native Excel function:

=DOLLARDE(A1,60)
 
Upvote 0

Forum statistics

Threads
1,215,475
Messages
6,125,028
Members
449,205
Latest member
Eggy66

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