Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Object 1(b) MS Excel.

Create and print a salary sheet of employees of XYZ Superstore following:

Instructions:
1: Calculate overtime = Total hours worked-(Days Worked*8)
2: Use IF () Function to calculate overtime charges as:
Overtime charges = overtime*100(for worker type A)
Overtime charges = overtime*50(for worker type B)
Overtime charges = overtime*40(for worker type C)
Overtime charges = overtime*30(for others)
3: Use IF () Function to calculate Basic Pay as:
Basic Pay = Days Worked*400(for worker type A)
Basic Pay = Days Worked*300(for worker type B)
Basic Pay = Days Worked*200(for worker type C)
Basic Pay = Days Worked*100(for others)
4: Use SUM Function to calculate net pay:
Net pay = Basic pay+overtime charges
Worker Type Emp # Days Worked Hrs Worked Overtime OT Charges Basic pay Net pay
A 1001 20 190
B 1002 19 200
C 1003 18 240
D 1004 24 220
E 1005 21 210

Procedure
 Double click icon MS Excel.
 Type the given data in table.
 Calculate Overtime by using the formula{Overtime = total hours worked-(Days worked*8)}
 Calculate OT charges using IF() Function{=IF(A2=”A”,E2*100,IF(A2=”B”,E2*50,IF(A2=”C”,E2*40, E2*30)))}
 Calculate Basic pay using IF() Function{=IF(A2=”A”,C2*400,IF(A2=”B”,C2*300,IF(A2=”C”, C2*200, C2*100)))}
 Calculate Net pay using SUM Function{=sum(F2+G2)}
 Drag the corner of cell to apply formula for other workers.
 Save and Print.

You might also like