Question:

Write the steps to use the VLOOKUP function to find data in a large spreadsheet.

Show Hint

Remember order: Lookup value → Table range → Column number → Exact/Approx match.
Updated On: Feb 27, 2026
Hide Solution
collegedunia
Verified By Collegedunia

Solution and Explanation

Concept: VLOOKUP Function

VLOOKUP (Vertical Lookup) is used in MS Excel to search for a value in the first column of a table and return corresponding data from another column.

Syntax

=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
 

Step 1: Organize Your Data

  • Ensure the lookup value is in the first column of the table.
  • Arrange data in a clear tabular format.


 

Step 2: Select the Cell for Result

Click the cell where you want the lookup result to appear.


 

Step 3: Enter the VLOOKUP Formula

Example:

=VLOOKUP(A2, B2:D100, 2, FALSE)

ArgumentMeaning
A2Lookup value
B2:D100Table range
2Column number to return value from
FALSEExact match


 

Step 4: Choose Match Type

OptionMeaning
FALSEExact match (most commonly used)
TRUEApproximate match (data must be sorted)


 

Step 5: Press Enter and Copy Formula

  • Press Enter to get the result.
  • Drag the fill handle to apply the formula to multiple rows.


 

Step 6: Check for Errors

  • #N/A → Value not found.

Use IFERROR for cleaner output:

=IFERROR(VLOOKUP(A2, B2:D100, 2, FALSE), "Not Found")
 

Conclusion

VLOOKUP helps efficiently search and retrieve data from large spreadsheets by matching a value in the first column and returning related information.

Was this answer helpful?
0
0