lmmay
Board Regular
- Joined
- Jun 6, 2014
- Messages
- 87
I have a workbook with a Labor/Equipment sheet. The sheet has dropdown menus for Employee, Title, Status (FT, PT, T) and Equipment. Labor costs are calculated based on work categories (A, B, C – G).
Full time employee regular labor costs are not calculated for categories C – G. Part Time and Temporary employees’ costs are calculated for all categories.
The employee name, title, rate & status (column C) is listed in the payroll record.
This is the formula I am using to calculate the cost for regular time hours.
=IF(AND('PAYROLL RECORD'!$L$6="A",C1>="P"),C3*N3,0)+IF(AND('PAYROLL RECORD'!$L$6="B",$C1>="P"),(C3*N3),0)+IF('PAYROLL RECORD'!$L$6>="C",C3*N3
My problem is the formula can not be copied to each employee block since the employee in the payroll record is in rows 1 through xx and copying changes the C1 (Payroll Record) to the corresponding employee row in this sheet, not C2, C3, etc.
Can the formula be modified to look up the employee for status rather than the column C row?
<tbody>
</tbody>
Full time employee regular labor costs are not calculated for categories C – G. Part Time and Temporary employees’ costs are calculated for all categories.
The employee name, title, rate & status (column C) is listed in the payroll record.
This is the formula I am using to calculate the cost for regular time hours.
=IF(AND('PAYROLL RECORD'!$L$6="A",C1>="P"),C3*N3,0)+IF(AND('PAYROLL RECORD'!$L$6="B",$C1>="P"),(C3*N3),0)+IF('PAYROLL RECORD'!$L$6>="C",C3*N3
My problem is the formula can not be copied to each employee block since the employee in the payroll record is in rows 1 through xx and copying changes the C1 (Payroll Record) to the corresponding employee row in this sheet, not C2, C3, etc.
Can the formula be modified to look up the employee for status rather than the column C row?
A | B | C | D | E | F | G | H | I | J | K | L | M | N | OT1 | P | Q | |
1 | Employee/ | RATE w/ | COST | RATE | 1/3 | 1/4 | 1/5 | 1/6 | 1/7 | 1/8 | 1/9 | REG | OT1 | OT2 | REG TIME COST | ||
2 | Equipment | FRINGE | CODE | Sun | Mon | Tue | Wed | Thu | Fri | Sat | |||||||
3 | NAME | REG | 0.0 | ||||||||||||||
4 | EQUIP | 0.0 | $ - | ||||||||||||||
5 | EQUIP | 0.0 | $ - | ||||||||||||||
6 | EQUIP | 0.0 | $ - | ||||||||||||||
7 | EQUIP | 0.0 | $ - | ||||||||||||||
8 | NAME | REG | 0.0 | ||||||||||||||
9 | EQUIP | 0.0 | $ - | ||||||||||||||
10 | EQUIP | 0.0 | $ - | ||||||||||||||
11 | EQUIP | 0.0 | $ - | ||||||||||||||
12 | EQUIP | 0.0 | $ - |
<tbody>
</tbody>