Roll No Name Class Foc C Hindi Total Percentage Result Grade
Roll No Name Class Foc C Hindi Total Percentage Result Grade
1. Prepare a student table insert following information such as roll no, Name, Class and Marks in
three subjects. The insert details often students. Calculate total marks, percentage, result (pass or
fail), and Grade (distinction, first, second, pass class) as per usual rules. Draw a column chart
showing the roll no versus average scored.
MARKS CARD
100.00
90.00
80.00
70.00
PERCENTAGE
60.00
50.00
PERCENTAGE
40.00
30.00
20.00
10.00
0.00
101 102 103 104 105 106 107 108 109 110
ROLL NO
FORMULA:
TOTAL:
=SUM(FOC+C+HINDI)
PERCENTAGE:
=TOTAL/3
RESULT:
=IF((AND(FOC>=35,C>=35,HINDI>=35)),"PASS","FAIL")
GRADE: =IF((AND(RESULT="PASS",PERCENTAGE>=85)),"DISTINCTION",
IF((AND(RESULT="PASS",PERCENTAGE<85,PERCENTAGE>=75)),"FIRSTCLASS",
IF((AND(RESULT="PASS",PERCENTAGE>=60,PERCENTAGE<75)),"SECONDCLASS",
IF((AND(RESULT="PASS",PERCENTAGE>=35,PERCENTAGE<60)),"THIRD CLASS","FAIL"))))
1
BCA
2. Create a Employee table with the following details employee no, employee name, doj, design
andbasic. Calculate Da, HRA, Gross pay, Income tax, net pay, provident fund as per the following
rules.
Da=10%basic
Hra-if basic pay is<2500Hra 10% basic else 25% basic Provident fund=12% basic Professional
tax-rs 100 if gross is<10000else 200Netpay-gross-Professional tax-Provident fund Use Pivot table,
display the number of employees in each Department and represent it using Pie chart.
EMP EMP
NO NAME DOJ DEPARTMENT DESIGNATION BASIC DA HRA GROSS PT PF NETPAY
E101 SUKESH 21-09-2020 SALES MANAGER 23000 2300 5750 31050 200 2760 28090
E102 SURESH 30-05-2023 ACCOUNT CLERK 6000 600 1500 8100 100 720 7280
E103 SUMITH 28-07-2012 IT MANAGER 32000 3200 8000 43200 200 3840 39160
E104 SUNITH 12-10-2021 SALES EXECUTIVE 14000 1400 3500 18900 200 1680 17020
E105 SURYA 04-06-2020 SERVICE ENGINEER 21000 2100 5250 28350 200 2520 25630
E106 SUJESH 09-08-2023 HR MANAGER 16000 1600 4000 21600 200 1920 19480
E107 SUHAN 06-09-2013 SALES DIRECTOR 35000 3500 8750 47250 200 4200 42850
E108 SURI 17-11-2019 HR RECRUITER 25000 2500 6250 33750 200 3000 30550
E109 SHUBH 23-04-2014 FINANCE ACCOUNTANT 32500 3250 8125 43875 200 3900 39775
E110 SUBASH 25-03-2015 FINANCE ANALYST 31000 3100 7750 41850 200 3720 37930
PIVOT TABLE:
DEPARTMENT
DEPARTMENT Count - EMP NO
ACCOUNT 1
FINANCE 2 1 1
ACCOUNT
HR 2
IT 1 FINANCE
SALES 3 2 HR
SERVICE 1 IT
Total Result 10 3
SALES
SERVICE
FORMULA: 2
1
DA: =0.1*BASIC
HRA: =IF(BASIC<2500,0.1*BASIC,0.25*BASIC)
GROSS: =SUM(BASIC:DA:HRA)
PT: =IF(GROSS<10000,100,200)
PF: =0.12*F2
NETPAY: GROSS-PT-PF
2
BCA
ZONE PERCENTAGE
SOUTH 10.00%
NORTH 12.50%
EAST 14.00%
WEST 13.00%
Create another table n the same worksheet to store salesman names, zone names, places, names
ofitems sold, rate per unit, quantity sold. Calculate total sales amount for each salesman. For the
above table write the formula to compute the commission to be given.
ZONE
SOUTH
ZONE
NORTH
ZONE
EAST
3
BCA
ZONE
WEST
ZONE
EAST
WEST
Display the details of the items which are sold more than 50 no's in South or North zones.
ZONE QUANTITY
SOUTH >50
NORTH >50
FORMULA:
SALE:
=RATE*SOLD
COMMISSION:
=IF(ZONE="NORTH",SALE*0.125,IF(ZONE="SOUTH",SALE*0.1,IF(ZONE="WEST",SALE*
0.13,IF(ZONE="EAST",SALE*0.13))))
4
BCA