calculating wages given hours worked and hourly wage

D

dnajel

HI can anyone help?

I have the follwing in my excel worksheet


start time / end time /

and I am calculating the hours difference between them an
it gives me a value now for each hour worked I would like
to apply a cost of lets say $10 how that can be done

start time 19:00 end time 20:30 = worked time 1:30 hour
now i need that that hour is converted to money i.e. $15
how can I do?
 
R

Ragdyer

I would suggest that you use 5 columns for your "PaySheet".
For example:
ColA = start time
ColB = end time
ColC = total time worked
ColD = pay rate
ColE = daily pay

In C1 enter:
=((B1-A1+(B1<A1))*24)*AND(A1<>0,B1<>0)

In E1 enter:
=C1*D1

This takes into consideration the possibility of the end time crossing
midnight.
 

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