Lesson 2.3 Advanced Spreadsheet Skills
Lesson 2.3 Advanced Spreadsheet Skills
skills
MS Excel
Worksheets
Excel’s main screen
is called a
“worksheet”.
Each worksheet is
comprised of many
boxes, called
“cells”.
6
Types of operations
You can use any of the following operations in a
formula:
operation symbol example
addition: + =a1+3
subtraction: - =100-b3
multiplication: * =a1*b1
division: / =d1/100
exponentiation ^ =a2^2
negation - =-a2+3
(same symbol as subraction)
Let’s Try
16
What is a function?
A function is a "named operation"
Functions have
a name
parentheses
parameters/arguments inside the parentheses
• Many parameters for one function separated with commas (,)
The most used functions in Excel are the functions that count and sum. You
can count and sum based on one criteria or multiple criteria.
Count
To count the number of cells
that contain numbers, use the
COUNT function.
Countif
To count cells based on one
criteria (for example, higher
than 9), use the following
COUNTIF function.
Countifs
To count cells based on
multiple criteria (for example,
green and higher than 9), use
the following COUNTIFS
function.
Sum
To sum a range of cells, use
the SUM function.
Sumif
To sum cells based on one
criteria (for example, higher than
9), use the following SUMIF
function (two arguments).
Other function
Mean – the result obtained by adding several
quantities together and then dividing this total by
the number (N) of quantities; the average
Mean = SUM(range)/N
or
Mean =Average(range)
26
Other function
Median – the middle value in a series of
values
=median(range)
27
Other function
Standard Deviation
– shows how much variation exists from the average.
- A low standard deviation indicates that the data point
tend to be very close to the mean.
- A high standard deviation indicates that the data
points are spread out over a large range of values.
=Stdev(range)