Grade 9 EM Unit 2 Excel 2023
Grade 9 EM Unit 2 Excel 2023
What is a Spreadsheet?
A spreadsheet is an electronic document in which data is arranged in the rows
and columns of a grid and can be manipulated and used in calculations.
Method 1:
Start → All Apps (All Programs) → Microsoft Office → Microsoft Office
Excel
Method 2:
Double click on the Excel icon on Desktop
Method 3:
Run → Type ‘Excel’ and Enter
Title Bar - X
File Home Insert Page layout Formulas Data Review View Toolbar
Quick
/ Ribbon
Access
Toolbar C4 fx Formula Bar
A B C D E F
1
Tools
2 Insert function
Vertical
3
Scroll bar
4 Column titles
Name Box
5
6 Cell
Row
7 Active cell
titles
8
9
10
Sheet1 Sheet2 Sheet2 *
Status Bar
Horizontal Zoom
Insert View
Sheet Scroll bar controls
Worksheet buttons
tabs
File Tab The File tab has replaced the Office button. It helps
you to manage the Microsoft application and
provide access to its options such as Open, New,
Save, Save As, Print, etc.
Name Box Displays the active cell address.
Cell address
Each cell in a worksheet is identified by a cell address. A cell address is named
by the letter that represents the column and the number that represents the row.
B5
No Command Description
1. Font Face To change font face
2. Font Size To change the font size
12
No Command Description
Date Notations
dd - Date - 05
d - Date -5
ddd - Day (3 digit) - Wed
dddd - Day (Full) - Wednesday
MM - Month - 03
M - Month -3
MMM - Month (3 digit) - Mar
MMMM - Month (Full) - March
yy - Year - 23
yyyy - Year - 2023
1. 05/04/2021 dd/MM/yyyy
2. 28/03/2021 d/MM/yyyy
3. 1/1/2021 d/M/yyyy
4. 3/4/21 d/M/yy
5. 05-05-2021 dd-MM-yyyy
6. 05-January-2021 dd-MMMM-yyyy
7. 21-Dec-2020 dd-MMM-yyyy
8. April 15, 2020 MMMM dd, yyyy
9. 15 July 2020, Monday dd MMMM yyyy, dddd
7 Information and Communication Technology | 0776361414 | ICT By Murali
10. 04/April/21 dd/MMMM/yy
1. General
Eg: 25, 100, 250,….
2. Number
Eg: 25.00, 100.00, 250.00
3. Currency
Eg: 250 → Rs.250.00
1500 → $1,500.00
4. Accounting
Eg: 250 → Rs. 250.00
1500 → $ 1,500.00
5. Short Date
Eg: 10/03/2021
6. Long Date
Eg: Wednesday, March 10, 2021
7. Time
Eg: 20:33
08:33 PM
10. Scientific
OPERATORS
Arithmetic Operators
Operator Precedence
( ) Bracket
increases
^ Power / Exponentiation
Priority
*/ Multiplication / Division
+- Addition / Subtraction
Eg:
1) = 2*(3+2)-1
= 2*5-1
= 10-1
1) = 2^3+(10-7)
=2^3+3
= 8+3
=11
2) = 10-2 *12/3*(3^2)
= 10-2*12/3*9
= 10-2*4*9
= 10-8*9
= 10-72
= -62
Simple Formulas
A B C
1 25 45 70
2 50 12 38
3 20 5 100
4 48 6 8
5 10 3 1000
Cell Ranges
A1:A6
A1:D1
A1:C6
There are several functions in Ms. Excel. The basic functions are given below.
1. SUM
2. AVERAGE
3. MAX
4. MIN
5. COUNT
6. COUNTA
SUM
To calculate the total of the numbers in a cell range
Syntax
=SUM(number1, number2, number3,…)
Eg:
=SUM(10,20,30) → 60
=SUM(A1,A2,A3,A4,A5)
=SUM(A1:A5)
=SUM(A1:A3, A5)
=SUM(A1:A5, B1:B5)
AVERAGE
To calculate the average of the numbers those are within a cell range.
Syntax
Eg:
=AVERAGE(10,20,30) → 20
=AVERAGE(A1,A2,A3,A4,A5)
=AVERAGE(A1:A5)
=AVERAGE(A1:A3, A5)
=AVERAGE(A1:A5, B1:B5)
MAX
To find the largest value in the cell range
Syntax
=MAX (number1, number2, number3,…)
Eg:
= MAX(10,20,30) → 30
= MAX (A1,A2,A3,A4,A5)
= MAX (A1:A5)
= MAX(A1:A3, A5)
COUNT
To count the cells which have numeric values.
Syntax
=COUNT (number1, number2, number3,…)
Eg:
= COUNT(10,20,30) →3
= COUNT (A1,A2,A3,A4,A5)
= COUNT (A1:A5)
= COUNT(50, 150, a) →2
= COUNTA
To count the number of cells which have any characters or numbers.
Syntax
RANK
To calculate the rank of the numbers in a parcular cell range.
Syntax
=RANK(number, ref,[order])
Eg:
=RANK(A1,A$1:A$5)
$ symbol is used to keep the range unchanged while copying the function.
CELL REFERENCE
Cell reference means cell address.
If you copy the formula in column direction, row number will change but
column name will not.
B5 C5
B6
$B$5
$B5 $B5
$B6
B$5 C$5
Text Functions
1. LEFT
2. RIGHT
3. MID
4. CONCATENATE
5. FIND
1. LEFT
It is used to extract the characters from left side of a text.
Syntax
=LEFT(text,num_of_chars)
Eg:
=LEFT(“Computer”,3) → Com
2. RIGHT
It is used to extract the characters from right side of a text.
Syntax
=RIGHT(text,num_of_chars)
Eg:
=RIGHT(“Computer”, 2) → er
3. MID
It is used to extract the characters from the mid of a text.
Syntax
=MID(text, start_number,num_of_chars)
Eg:
=MID(“Computer”,4,3) → put
4. CONCATENATE
It is used to join two or more texts together.
Syntax
17 Information and Communication Technology | 0776361414 | ICT By Murali
=CONCATENATE(text1, text2, text3,…)
Eg:
=CONCATENATE(“key”, “board”) → keyboard
5. FIND
It is used to find the position of a character in a text.
Syntax
=FIND(find_text,within_text,[start_num])
Eg:
=FIND(“p”, “Computer”) →4
DATE FUNCTIONS
1. TODAY
2. NOW
3. DAY
4. MONTH
5. YEAR
6. DATEDIF
TODAY
It brings the date today.
Eg: =TODAY() → 27/03/2021
NOW
It brings the current time with date.
Eg: =NOW() → 27/03/2021 19:52
DAY
It extracts the day from a date.
Eg: =DAY(“27/03/2021”) → 27
MONTH
It extracts the month from a date.
Eg: MONTH(“27/03/2021”) → 3
YEAR
DATEDIF
It calculates the difference of two dates.
Eg: =DATEDIF(“01/01/2021”, “27/03/2021”, “d”) → 85
Old date New date
“d” - days
“m” – months
“y” - years
CHARTS
The charts are used to represent data visually. It is more efficient using charts
rather than number data to explain something.
Note:
RANK Function
It calculates the rank of a number with in the particular range.
Syntax:
=RANK(number, reference,[order])
Eg:
=RANK(H2, $H$2:$H$6)
The dollar symbol does not allow the cell address to change when copying.
Questions:
1. Write the steps to create a column chart using the data given below.
Answer:
1. First select the data.
2. Insert → Column → 2D Column
3. Choose the first option in the 2D column.
Steps:
1. Type the data in a spreadsheet
2. Select Data
3. Insert → Chart → Pie Chart → 2D Pie
4. Select the first Option
7. Write steps to show the data labels on the above pie chart.
1. Select the chart
2. Design → Add Chart Element → Data Labels → Inside End