Excel1-Module 2 Lesson
Excel1-Module 2 Lesson
Module Overview
This module is part of the Excel 2 course which is for advancing your knowledge of Excel. During this
lesson we will expand on your existing knowledge of formulas and functions.
Contents
Module Overview ......................................................................................................................................................1
Cell Reference
Noun
Cell Reference is the intersection of a row and column,
used to describe the location of a cell within a
spreadsheet.
Functions in Excel can be used to make working in Excel simpler. Let’s begin with a
simple example of a function.
Cell Range
Noun
Cell Range or just Range refers to a selection of cells.
It is noted as the first cell reference and last cell
reference of a selection with a “:” between.
For example A2:A10 or B4:D9
Ranges are always ordered from the left or top most to the bottom or right most.
Ranges can also be used for full columns or rows.
Example Ranges
4 cells, square 20 cells,
rectangle
B2:C3
C3:G6
3 cells, in row 3 cells, in column
B4:D4 B2:B4
Using the Function Arguments dialog box is one of the easiest ways to ensure your
function works correctly. The box will guide you through the function parameters and
the bottom of the box shows the Formula result.
Now that the average has been calculated we can compare each weekly Total to the
Average, being careful to use absolute cell reference to ensure the cell reference
representing the average does not change as the function is copied.
should also be in the table. (In our example, we will use the entire table in the Birthdays
sheet).
Column Index Number (Col_index num) – this is how many columns over in the table
the data you want is located (In our example, the birthday is the second column of the
table).
Range lookup – this value (either TRUE or FALSE) is used to tell Excel if you want an
exact match or approximate. In many cases, including our example, you will want an
exact match. Use FALSE to find an exact match.
Note: the table must be sorted in ascending order. This means the further down the
table, the larger the number.
Now that the birthdays have been sorted, we can begin adding the vlookup to add in
birthdays to Ms Roberts Class.
We recognize the cell range A:B but have not covered referencing cells or ranges in
other sheets. This is done by typing the name exactly as it appears (capitals included)
with an ! after. In our examples the two sheet references are Ms Roberts Class! and
Birthdays!
The functions button and dialogs fill in the function for you. Notice how D3 now holds
the full function with all arguments completed
=VLOOKUP(A3,Birthdays!A:B,2,FALSE)