| Lookup Value |
- The value being looked-up.
- This can be a value, a cell reference, or text.
|
| Table Range |
- Table that contains the look-up values.
- VLOOKUP always looks in the leftmost column for a value that matches the Lookup_Value
- The Table_Range can be an absolute cell reference or a named range.
|
| Column_Number |
- The column containing the value to be returned.
- This is the number of columns to the right in Table_Range.
- The result will be in this column at the same row where the lookup value was found.
|
Approx or Exact Match [OPTIONAL] |
- If FALSE, an exact match must be found.
- If TRUE, the closest match (less than the lookup_value) is selected.
- Data must be in order if TRUE is selected.
|
In this example, we have the branch numbers and the June sales amounts in columns
A and
B.
The lookup table has a third column that contains the annual sales for each branch.
[E10:E15]
Create a Vlookup formula in column C.
(=VLOOKUP(A2, $C10:E15, 2).
This formula will search the leftmost column of the table range
($C$10:$E$15) for the value in A2
(300).
When the value 300 (A2) is found at row 11, the formula will look in the second
2 column of the table to get the branch name.
In column D, create a similar formula except the column number will be
3 instead of
2 because we want the annual sales for the selected branch.
(=VLOOKUP(A2, $C10:E15, 3)
The results of the formulas are shown below: