jcfite

New Member
Joined
Sep 10, 2009
Messages
12
I have an spreadsheet that is monitoring the productivity of agents, as well as the time that it takes to complete each task. My workforce keeps time as .50 = 30 minutes. So 7 and half hours is actually 7.5. Agents are putting the actual time of it took such as 15 minutes however I would like to insert a formula that will convert this for me manually. I know I could give them a conversion sheet, but it took quite a while to get them to actually be able to work in excel. So I would like to add this formula. Any suggestions would be greatly appreciated.

jcfite
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
As long as they are putting in just the 15 or 30 or 45 etc....

Couldn't you just do A2/60?

Where A2 houses the time it took?
 
Upvote 0
No, I have a main sheet that is computing all of the total. So lets say that it took 7 and half hours. They are putting it in as 7.30 for 7 hours and 30 minutes. However I need for it to read 7.50 for 7 hours and 50 minutes. So lets say they put 7.30 in A1 in A2 I would like for the time to be 7.50.
 
Upvote 0
Well I don't know how to do it in VBA, but in a helper column you could put:

INT(A1)+((MOD(A1,INT(A1))*100)/60) which will convert the time like 7.30 to 7.5 and 7.15 to 7.25, etc.
 
Upvote 0
Thanks c_m_s_jr, that works perfect!!! Lenze I was able to get into that site, will take a look.
 
Upvote 0
c_m_s_jr - lets say they put in .15 for 15 minutes. How would I get that to convert to 25 minutes. with the formula you gave?
 
Upvote 0
Here's one way...

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

or using DOLLARDE function from Analysis ToolPak

=DOLLARDE(A1,60)

....or another

=INT(A1)+MOD(A1,1)*5/3
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,657
Messages
6,120,775
Members
448,991
Latest member
Hanakoro

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