Microsoft Excel
Lab Activity 1: Basic Spreadsheet Creation
Task:Create a worksheet showing marks obtained by 5 students in 6 subjects and calculate their Total, Average, and GPA.
Formulas Used:
Total: =B2+C2+D2+E2+F2+G2
Average: =H2/6
GPA (based on average marks):
=IF(I2>90,4,IF(I2>80,3.6,IF(I2>70,3.2,IF(I2>=60,2.8,IF(I2>=50,2.4,IF(I2>=40,2,0))))))
Steps:
1. Open Microsoft Excel.
2. Enter the data as shown in the table.
3. Apply formulas for Total, Average, and GPA.
4. Copy formulas down for all students.
5. Format the table using borders, bold headings, and center alignment.
Lab Activity 2: Using Excel Functions
Task:Find the Highest, Lowest, and Average Total marks.
Formulas Used:
Highest Marks=MAX(B2:B6)
Lowest Marks=MIN(B2:B6)
Average Marks=AVERAGE(B2:B6)
Lab Activity 3: Creating a Chart
Task:Create a Column Chart showing Total marks of each student.
Book's Exercise Page number 266---- number 2
a.Create a salary sheet of an organization with field names as: S.no, Name, B salary, Service year, Monthly allowance, Daily allowance, Provident fund, Month salary, Yearly Salary, Monthly tax, Yearly tax, Net yearly income.
|
A |
B |
C |
D |
E |
F |
G |
H |
I |
J |
K |
L |
|
S.N |
Name |
Basic
Salary |
Service
Year |
Monthly
Allowance |
Daily
Allowance |
Provident
Fund |
Monthly
Salary |
Yearly
Salary |
Monthly
Tax |
Yearly
Tax |
Net
Yearly Income |
=IF(D2>10,0.1*C2,IF(D2>5,0.05*C2,0))
d. Calculate Daily
allowance according to the following condition.
If service year is
greater than 8 years, 10% of Basic Salary, if service year is greater than 3
years,5 % of Basic Salary, other wise 1% of Basic Salary.
=IF(D2>8,0.1*C2,IF(D2>3,0.05*C2,0.01*C2))
e.Calculate Provident
fund according to the following condition.
=IF(C2>50000,10000,IF(C2>30000,5000,2000))
=C2+E2+F2+G2
g Calculate yearly
salary.
=H2*12
=0.13*H2
=J2*12
j. Calculate Net yearly income. (yearly salary-yearly tax.)