Calculating time and pay rates

D

Django Cat

On a project timekeeping spreadsheet, I have an accumulating 'hours
worked' field formatted as [hh]:mm. I'd like to be able to multiply
this by an hourly pay rate to show money earned so far, and then
display this with currancy format.

Any help with an easy way of doing this much appreciated.

DC
--
 
B

Bob Phillips

=time_cell*24*pay_rate

and just format as currency through Format>Cells menu

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
D

Django Cat

Thanks Bob, that works! I'm not sure I understand the logic of *why*
it works, but it does!

DC
=time_cell*24*pay_rate

and just format as currency through Format>Cells menu

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my
addy)



Django Cat said:
On a project timekeeping spreadsheet, I have an accumulating 'hours
worked' field formatted as [hh]:mm. I'd like to be able to multiply
this by an hourly pay rate to show money earned so far, and then
display this with currancy format.

Any help with an easy way of doing this much appreciated.

DC
--



--
 
B

Bob Phillips

It is because time is held as a fraction of 1 day, so 12:00 is held as 0.5,
8.00 AM is 0.3333, etc. So to get the decimal number of hours,you multiply
by 24 (.5*24 = 12, .33333*24 is 8 and so on). You can then multiply that by
the pay rate.

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



Django Cat said:
Thanks Bob, that works! I'm not sure I understand the logic of *why*
it works, but it does!

DC
=time_cell*24*pay_rate

and just format as currency through Format>Cells menu

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my
addy)



Django Cat said:
On a project timekeeping spreadsheet, I have an accumulating 'hours
worked' field formatted as [hh]:mm. I'd like to be able to multiply
this by an hourly pay rate to show money earned so far, and then
display this with currancy format.

Any help with an easy way of doing this much appreciated.

DC
--
 
D

Django Cat

Bob said:
It is because time is held as a fraction of 1 day, so 12:00 is held
as 0.5, 8.00 AM is 0.3333, etc. So to get the decimal number of
hours,you multiply by 24 (.5*24 = 12, .33333*24 is 8 and so on). You
can then multiply that by the pay rate.

OK, you live and learn! Thanks again.

DC

--
 

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