Converting military time minutes to hundreths for accounting

J

JD Fields

I am trying to come up with a formula for work that has
time in, time out, and total hours but the total hours
need to be converted into hundreths for accounting.
time in time out total hours
12:00 14:15 2.25 hours

somebody please help!!
 
R

Ron Rosenfeld

I am trying to come up with a formula for work that has
time in, time out, and total hours but the total hours
need to be converted into hundreths for accounting.
time in time out total hours
12:00 14:15 2.25 hours

somebody please help!!

=(TimeOut-TimeIn)*24

will work for examples similar to what you posted. However, if your time span
passes midnight, then this formula will fail.

If that is the case, the most foolproof option would be to include the date
along with the time, but other options are possible depending on the possible
time frames.

For example, if the maximum time span will be less than 24 hours, you could
use:

=(TimeOut-TimeIn+(TimeOut<TimeIn))*24


--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top