M S EXCEL (SPREADSHEET) I CLASS 9
MS Excel is the spreadsheet Software developed by Microsoft. Spreadsheet software are used to perform any type of calculations and analysis.
Spreadsheets are used in different fields such as business, science and engineering for performing different calculations.
MS Excel is the most popular software that helps us to:
- Arrange Data in an organized way
- Type less and get more
- Perform calculations
- Auto recalculation
- Auto Format Data
- Compare Data through Chart
- Sort Data for better analysis
- Compare two worksheets side by side
- Spreadsheet in MS-Excel is also known as Worksheet.
Worksheet
It is a grid made up of rows and columns.
Cell Address Any cell can be referenced by its cell address. Cell address is referred as the column name followed by row number. For example, the cell address of 5th row, 7th column is G5.
The MS Excel worksheet has 1,048,576 rows and 16,384 columns.
Active Cell : The active cell in a worksheet is the one in which you can enter data.
STATUS BAR
It appears at the bottom of the spreadsheet. It displays various messages regarding the task being carried out on the worksheet.
NAME BOX
It displays the cell address of the active cell. Active cell is the one on which the cursor is pointing.
RANGE OF CELLS
A range of cells in Excel is defined as a specific set of cells, represented by a combination of letters and numbers (e.g., A1:B5). Ranges in Excel can be used for data entry, manipulation, applying formulas, formatting, and more.
Question 1:
Define the term workbook.Answer:
A workbook is a collection of worksheets. By default, there are three worksheets in every workbook.
Question 2
Mayur could not complete the assignment given by his teacher which is shown below. Help him to fill the blank cells marked with yellow colour.
Mayur can use formulas to calculate the values of the blank cells. Let us assume that "R. No." has the cell reference A1 and write the formulas accordingly.
To calculate Total, he can write the formula
= C2 + D2
in cell E2. This formula will calculate the sum of cells C2 and D2 in cell E2. The formula can be copied in range E3 : E6 to fill the Total column.To calculate Percentage, he can write the formula
= (E2 / 100) * 100
in cell F2. This formula will calculate the percentage of marks in cell F2. The formula can be copied in range F3 : F6 to fill the Percentage column.To fill the Remarks column, Mayur can write the formula
= IF (F2 >= 40, "Pass", "Fail")
in cell G2. This formula will return "Pass" if the percentage is greater than or equal to 40, else return "Fail". The formula can be copied in range G3 : G6 to fill the Remarks column.
Question 3
The class teacher asked Ravi to observe the following worksheet carefully, and answer the questions based on it:
i) Identify the nature of formula in the cell E9.
(ii) Copy the formula applied in cell E9 to all the cells from E5 to E11.
(iii) Find the maximum and the minimum value among the cells E5 to E11.
(iv) Calculate the average of both Oral and Written marks.
Answer
(i) The formula in E9 is = AVERAGE (C9 : D9)
. It calculates the average of the marks in cells C9 and D9. It uses the AVERAGE() function.
(ii) When the formula is copied to cells from E5 to E11, the cell references adjust themselves relatively as follows:
E5 = AVERAGE (C5 : D5)
E6 = AVERAGE (C6 : D6)
E7 = AVERAGE (C7 : D7) and so on.
(iii) The maximum value can be calculated by using the formula =MAX(E5:E11)
. The maximum value is 93.
The minimum value can be calculated by using the formula =MIN(E5:E11)
. The minimum value is 66.5.
(iv) Ravi can use the formula =AVERAGE(C5:C11)
in the cell C12 to calculate the average of Oral marks.
He can use the formula =AVERAGE(D5:D11)
in the cell D12 to calculate the average of Written marks.
Question 4
Sahil has been given the hard copy of the following worksheet by his teacher
His teacher has asked him to:
(i) Calculate the total percentage of each student.
(ii) Find the Grade of each student by keeping a simple rule in view, i.e., students scoring below 90% must get B+ while those above this baseline must be given an A+.
(iii) Also find the Maximum marks and calculate the average Marks of both Practical and Theory.
Answer
(i) Sahil can calculate the Total Percentage of Veena by using the formula =(C3+D3)/20*100
in cell E3. Then, he can copy the formula in cell range E4 : E7 to calculate the Total Percentage of all students.
(ii) Sahil can calculate the Grade of Veena by using the formula =IF(E3<90, "B+", "A+")
in cell F3. Then, he can copy the formula in cell range F4 : F7 to calculate the Grade of all students.
(iii) To find the maximum marks in Practical, Sahil can use the formula =MAX(C3:C7)
in cell C10.
To find the maximum marks in Theory, Sahil can use the formula =MAX(D3:D7)
in cell D11.
To find the average marks of Practical, he can use the formula =AVERAGE (C3:C7)
in cell E10.
To find the average marks of Theory, he can use the formula =AVERAGE (D3:D7)
in cell F11.
| A | B | C |
1 | 5 | 6 | =A1+B1 |
2 | 3 | 6 | =A2+B2 |
3 | 4 | 2 | =A3+B3 |
4 | 7 | 4 | =A4+B4 |
| A | B | C |
1 | 5 | 6 | =$A$1+B1 |
2 | 3 | 6 | =$A$1+B2 |
3 | 4 | 2 | =$A$1+B3 |
4 | 7 | 4 | =$A$1+B4 |
| A | B | C |
1 | 5 | 6 | =A$1+B1 |
2 | 3 | 6 | =A$1+B2 |
3 | 4 | 2 | =A$1+B3 |
4 | 7 | 4 | =A$1+B4 |
Comments
Post a Comment