Excel Notes
Excel Notes
You need to know the error indicators in the spreadsheet. How will you know how to solve a
problem if you receive an error indicator and you do not know the meaning?
FUNCTIONS
The NOW function returns both the current date and time.
Examples
MODE Purpose Get the mode of a group numbers. The MODE function
returns the mode (most frequently occurring number) in a
group of supplied arguments.
Return value A number representing the mode
Example
MEAN Purpose The mean most commonly refers to the arithmetic mean.
The term ‘average’ is used to express that something is
statistically the norm. It would mean that a value is
expected, middle, usual or common. The mean is only a form
of describing an average.
Summarized by Estie
3
SMALL Purpose Get the nth smallest value. The SMALL function is useful
when you want to retrieve "lowest" values from a set of
data. For example, the first, second, and third lowest marks
for the exams.
Return value The nth smallest value in the array.
Example
LARGE Purpose Get the nth largest value. The LARGE function is useful when
you want to retrieve "top" values from a set of data. For
example, the first, second, and third results in a competition.
Return value The nth largest value in the array
Example
Summarized by Estie
4
ONE criterion
MULTIPLE criteria
SUMIFS Purpose Sum cells that match multiple criteria. The SUMIFS function
extends the usefulness of the SUMIF function by allowing
you to specify from 2 to 127 criteria rather than just one as
in SUMIF. The SUMIF function combines the IF function and
SUM function in Excel. This combination allows you to add
up those values in a selected range of data that meets
specific criteria.
The IF portion of the function determines what data meets
the specified criteria and the SUM part does the addition.
Return value The sum of the cells that meet all criteria
Example
Summarized by Estie
5
COUNTA Return value Count number of cells that are not empty
Example
RELATIONAL OPERATORS
A relational operator compares two operands to determine whether one is greater than, greater
than or equal to, less than, less than or equal to the other:
> greater than
>= greater than or equal to
< less than
<= less than or equal to
IF STATEMENT
The Excel IF function tests a user-defined condition and returns one result if the condition is true,
and another result if the condition is false.
Summarized by Estie
6
CONDITIONAL FORMATTING
Use conditional formatting to create rules (conditions) for when and how specific cells are
formatted. For example, make cells red, if an expiry date has passed, or color cells green, if they
match numbers in a lottery draw.
There are two types of cell references: relative and absolute. Relative and absolute references
behave differently when copied and filled to other cells. Relative references change when a formula
is copied to another cell. Absolute references, on the other hand, remain constant, no matter where
they are copied.
By default, all cell references are relative references. When copied across multiple cells, they change
based on the relative position of rows and columns. There may be times when you do not want a cell
reference to change when filling cells. Unlike relative references, absolute references do not change
when copied or filled. You can use an absolute reference to keep a row and/or column constant.
An absolute reference is designated in a formula by the addition of a dollar sign ($). It can precede
the column reference, the row reference, or both.
• Both lookup functions can be used to help you find specific data located in a database or list of
data.
• The difference between the two functions lies in how your data is organized in your
spreadsheets.
• If the data is organized in columns you would use VLOOKUP.
• If the data is kept in rows, you would use HLOOKUP.
• VLOOKUP searches down the leftmost column of a table for a match and returns a value from a
column to the right of the match on the same row.
• HLOOKUP searches left to right across a row of entries for a match and returns a value from a
row below the column the match was found in.
TEXT FUNCTIONS
LEFT Extracts one or more characters from the left side of a text string.
RIGHT Extracts one or more characters from the right side of a text string.
Summarized by Estie
7
MID Extracts characters from the middle of a text string; you specify which character
position to start from and how many characters to include
PROPER Converts a text string to proper case. Proper case is a combination of lower case
and capital letters.
Summarized by Estie