0
0
Excelspreadsheet~5 mins

Why lookups connect related data in Excel - Why Use It

Choose your learning style9 modes available
Introduction
Lookups help you find matching information from one list to another. They connect related data so you don't have to copy or type it again. This saves time and reduces mistakes.
When you have a list of product IDs and want to find their prices from another table
When you want to match employee names with their departments from a separate sheet
When you need to pull customer contact details based on their order numbers
When you want to combine sales data with region names stored in a different table
When you want to check if a student ID exists in the attendance list and get their status
Steps
Step 1: Click
- cell where you want the result
The cell is selected and ready for typing
Step 2: Type
- the selected cell
Formula bar shows the typed formula
💡 Start typing =XLOOKUP( or =VLOOKUP( to begin the lookup formula
Step 3: Enter
- the lookup value (e.g., a product ID cell reference)
Formula bar shows the lookup value as first argument
Step 4: Select
- the lookup array or table where to find the lookup value
Formula bar shows the lookup array as second argument
Step 5: Select
- the return array or column with the related data you want
Formula bar shows the return array as third argument
Step 6: Type
- optional arguments like match mode or if not found message
Formula is complete and ready to run
Step 7: Press
- Enter key
Cell shows the related data connected by the lookup
Before vs After
Before
A list of product IDs in column A and a separate price list in columns D and E
After
Column B shows prices next to each product ID by connecting data from the price list using lookup
Settings Reference
Lookup value
📍 First argument in XLOOKUP or VLOOKUP formula
The value to find in the lookup table
Default: Cell reference
Lookup array or table
📍 Second argument in XLOOKUP or VLOOKUP formula
Where Excel searches for the lookup value
Default: Range of cells
Return array or column
📍 Third argument in XLOOKUP or VLOOKUP formula
Where Excel gets the related data to show
Default: Range of cells
Match mode
📍 Optional argument in XLOOKUP
How Excel matches the lookup value
Default: Exact match
If not found
📍 Optional argument in XLOOKUP
What Excel shows if no match is found
Default: Error
Common Mistakes
Using VLOOKUP with the lookup column not as the first column in the table
VLOOKUP only searches the first column of the table for the lookup value
Use XLOOKUP which can search any column or rearrange the table so the lookup column is first
Not locking the lookup table range with $ signs when copying the formula
The lookup range shifts when copying, causing wrong or no matches
Use absolute references like $D$2:$E$10 to keep the lookup range fixed
Forgetting to set exact match in VLOOKUP or XLOOKUP
Excel may return wrong or approximate matches if exact match is not specified
Always set the match mode argument to FALSE (VLOOKUP) or 0 (XLOOKUP) for exact matches
Summary
Lookups connect related data from different tables to save time and avoid errors.
XLOOKUP is the modern, flexible way to find and return matching data in Excel.
Remember to fix lookup ranges and use exact match to get correct results.