Spreadsheet Skills 1
Spreadsheet Skills 1
Cell content
Type of
content Description Example
• Numbers
A value is a number that can be used in a • Dates in value form
Values calculation • Other useable values
• Mathematical operators
• Links to cell references
Instructions for performing calculations. • Spreadsheet formulae
Indicated by an equal (=) sign at the start (SUM, PRODUCT,
Formulae of the formula. COUNT, etc.)
Copy a single
cell rapidly
Fill pattern
(months)
Fill pattern
(multiples)
Mathematical Operations
3 Select cell A1
5 Select cell A2
6 Press Tab or Enter to calculate the sum.
•For subtraction, use a subtraction operator (−)
•For multiplication, use a multiplication operator (*)
•For division, use a division operator (/)
Key Point
The mathematical order of operations applies when using mathematical operators in a
spreadsheet.
For example, the spreadsheet will perform multiplication and division operations before
addition and division, and operations in parentheses will be completed first
SUM Function
The sum function can rapidly calculate the sum of multiple cells.
When a formula in a cell is moved or copied to another cell, relative cell references will
change according to the position of the destination cell relative to the original cell. This
is the default treatment for cell references.
This is useful if we would like a formula to apply to a list of data, where each row or
column is a new data input for the formula.
Absolute cell references will not change when the formula is copied. This is useful if a
formula needs to reference a fixed cell that applies to all formula copies.
To create an absolute cell reference, the $ symbol is added in front of the cell
reference's letter (column name) or number (row name). This locks that part of the cell
reference from moving.
Formulae can be typed into the cell or the formula bar.
C1 =A1+B1
C1 =A1+B1
C1 =$A1+B1
C1 =$A1+B1
C1 =A$1+B1
C1 =A$1+B1
C1 =$A$1+B1
C1 =$A$1+B1
C2 =A2+B2
D1 =B1+C1
C2 =$A2+B1
D1 =$A1+C1
C2 =A$1+B2
D1 =B$1+C1
C2 =$A$1+B2
D1 =$A$1+C1
Average function
The AVERAGE function calculates the average of the selected range of values.
Round Function
The round function changes the value of a cell by rounding the number to a specified
number of digits.
The ROUND function changes the underlying value rather than just changing how a
value is displayed (which is the case when formatting numbers).
Step Description Example
Formula
cell Formula Result
B2 =ROUND(A2,2) 1234.56
B3 =ROUND(A3,1) 1234.6
B4 =ROUND(A4,−1) 1230
B5 =ROUND(A5,−2) 1200
PS
IF function
The IF function applies a logical test and returns different values depending on whether
the logical test has been met.
B2 =IF(A2<10,1,0) 0
B3 =IF(A3<10,1,0) 1
B4 =IF(A4<10,1,0) 0
B5 =IF(A5<10,1,0) 1
PS