Lookup_Functions_in_Excel
Lookup_Functions_in_Excel
The Lookup functions in Excel are used to search for specific data in a row or column and return a
---
Searches for a value in the first column of a range and returns a value in the same row from
another column.
Example:
| Product | Price |
|---------|-------|
| Apple | $1.00 |
| Banana | $0.50 |
| Orange | $0.75 |
Formula:
- Result: $0.50
Explanation:
---
Searches for a value in the first row of a range and returns a value in the same column from
another row.
Example:
|---------|-------|--------|--------|
Formula:
- Result: $0.50
Explanation:
---
3. LOOKUP
Searches for a value in a range and returns a value from the same position in another range.
Example:
| Product | Price |
|---------|-------|
| Apple | $1.00 |
| Banana | $0.50 |
| Orange | $0.75 |
Formula:
- Result: $0.75
Explanation:
---
Important Points
- The FALSE in the formula indicates an exact match is required. Use TRUE for an approximate
match.
---
Practice Problems
1. Use VLOOKUP to find the price of "Orange" in the following table:
| Product | Price |
|---------|-------|
| Apple | $1.00 |
| Banana | $0.50 |
| Orange | $0.75 |
2. Use HLOOKUP to find the price of "Apple" from the following table:
|---------|-------|--------|--------|
3. Use LOOKUP to find the value associated with "Banana" in the range below:
| Product | Price |
|---------|-------|
| Apple | $1.00 |
| Banana | $0.50 |
| Orange | $0.75 |
---