OAT-Record-05) Salary Calculating in Excel Sheet
Calculate the net pay of the employees following the conditions below.
Employee Number |
Employee name |
Basic Pay |
DA |
HRA |
GPF |
Gross Pay |
Income tax |
Net Pay |
|
|
|
|
|
|
|
|
|
1. DA: - 56% of the basic pay if Basic pay is greater than 20000 or else 44%.
2. HRA:-15% of the Basic pay subject to maximum of Rs.4000.
3. GPF: -10% of the basic pay.
4. INCOMETAX:-10% of basic if Basic pay is greater than 20000.
Find who is getting highest salary & who is get lowest salary?
Procedure: -
STEP 1:
Enter into MS-EXCEL environment by choosing start àProgramsàMs OfficeàMS Excel.
STEP 2:
Now save the opened Blank document with the following step Office Button à save à Salary Table.
STEP 3:
Write a given data entry to cells à Select or drag table (4X9) à Select ALL Borders
STEP 4:
Enter a Employee Number, Name and Basic Pay à
1) DA: - 56% of the basic pay if Basic pay is greater than 20000 or else 44%.
DA: - FX = if ( ( C 2 > = 20000) ,(C 2 *44%),(C 2 * 56%) )
2) HRA:-15% of the Basic pay subject to maximum of Rs.4000.
HRA:- FX = if ( ( C 2 > = 4000), 4000, (C 2 * 15%) )
3) GPF: -10% of the basic pay
GPF: - FX = C 2 * 10%
4) Gross Pay: - Fx = sum ( C 2 + D 2 + E 2 + F 2 )
5) INCOME TAX:-10% of basic if Basic pay is greater than 20000.
INCOME TAX:- FX = if ( ( G 2 > = 20000) , ( G 2 *10%), 0 )
6) Net Pay:- Fx = Gross Pay – Income Tax
STEP 5: Goto Home Tab click Alignment.
STEP 6: Press Ctrl+S or form the menu option click File-> Save.
STEP 7: Press Alt+F4 or click Office Button-> Exit from menu to exit excel.
OUTPUT:-05
|
A |
B |
C |
D |
E |
F |
G |
H |
I |
1 |
Employee Number |
Employee name |
Basic Pay |
DA |
HRA |
GPF |
Gross Pay |
Income Tax |
Net Pay |
2 |
4501 |
SL.Kishore |
20000 |
8800 |
3000 |
2000 |
33800 |
3380 |
30420 |
3 |
4502 |
K.Kumar |
10000 |
5600 |
1500 |
1000 |
18100 |
0 |
18100 |
4 |
4503 |
S.Rani |
40000 |
17600 |
4000 |
4000 |
65600 |
6560 |
59040 |
5 |
4504 |
F.Raju |
15000 |
8400 |
2250 |
1500 |
27150 |
2715 |
24435 |
Comments
Post a Comment