CONVERT TOTAL HOURS TO REGULAR AND OVERTIME

G

Guest

I am trying to create a spreadsheet that converts the total hours worked in 1
column into two sepate columns that show the total regular and total overtime

NAME TOTAL REG OT
employee 1 10 8 2
employee 2 06 6 0
employee 3 12.5 8 4.5
 
D

Dave Peterson

Are all the Regular hours 8 or less?

In the Regular column (column C??):
=min(8,b2)

In the OT column:
=b2-c2

where b2 holds the Total hours.
 
N

Niek Otten

http://www.cpearson.com/excel/overtime.htm

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

|I am trying to create a spreadsheet that converts the total hours worked in 1
| column into two sepate columns that show the total regular and total overtime
|
| NAME TOTAL REG OT
| employee 1 10 8 2
| employee 2 06 6 0
| employee 3 12.5 8 4.5
 

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