Look Up Values in A List of Data
Look Up Values in A List of Data
Let's say you want to look up an employee's phone extension by using their badge number, or the correct
rate of a commission for a sales amount. You look up data to quickly and efficiently find specific data in a
list and to automatically verify that you are using correct data. After you look up the data, you can perform
calculations or display results with the values returned. There are several ways to look up values in a list
of data and to display the results.
To switch between viewing the results and viewing the formulas that return the results, press CTRL+`
(grave accent), or on the Tools menu, point to Formula Auditing, and then click Formula Auditing
Mode.
In this example, you know the frequency and want to look up the associated color.
A B
1 Frequency Color
2 4.14 red
3 4.19 orange
4 5.17 yellow
5 5.77 green
6 6.39 blue
Formula Description (Result)
=VLOOKUP(5.93, Looks up 5.93 in column A, finds the next largest value that is less than
A1:B6, 2, TRUE) 5.93, which is 5.77, and then returns the value from column B that's in
the same row as 5.77 (green)
A B C D
1 10000 50000 100000 Sales
Volume
2
.05 .20 .30 Rate
3
Formula Description (Result)
4
=HLOOKUP(78658,A1:D4,2, Looks up $78,658 in Row 1, finds the next largest
TRUE) value that is less than $78,658, which is $50,000, and
then returns the value from row 2 that's in the same
column as $50,000 (20%)
Notes To display the rate and return number as a percentage, select the cell and then click Percent Style
on the Formatting toolbar.
To display the Sales Volume number as dollars, select the cell and then click Dollar Style on the
Formatting toolbar.
Create a lookup formula with the Lookup Wizard
The Lookup Wizard creates the lookup formula based on a worksheet data that has row and column labels.
The Lookup Wizard helps you find other values in a row when you know the value in one column, and
vice versa. The Lookup Wizard uses INDEX and MATCH in the formulas that it creates.
1. On the Tools menu, click Add-ins, select the Lookup Wizard box, and then click OK.
2. Click a cell in the range.
3. On the Tools menu, click Lookup.
4. Follow the instructions in the wizard.
A B
1 Product Count
2 Bananas 38
3 Oranges 25
4 Apples 41
5 Pears 40
Formula Description (Result)
=INDEX(A2:B5,MATCH("Pears",A2:A5,0),2) Looks up Pears in column A and returns the value
for Pears in column B (40).
A B
1 Product Count
2 Bananas 38
3 Oranges 25
4 Apples 41
5 Pears 40
Formula Description (Result)
=OFFSET(A1,MATCH("Pears",A2:A5, Looks up Pears in column A and returns the value for
0),1) Pears in column B ( 40).
A1: The upper left cell of the range, also called the starting cell.
MATCH("Pears",A2:A5, 0): The MATCH function determines the row number below the starting cell
to find the look up value.
"Pears": The value to find in the lookup column.
A2:A5: The column for the MATCH function to search. Don't include the starting cell in this range.
1: The number of columns to the right of the starting cell to find the lookup value.