VLOOKUP in Excel | Step-by-Step Tutorial for Beginners

VLOOKUP in Excel | Step-by-Step Tutorial for Beginners

VLOOKUP in Excel | COMPLETE Easy Guide (Beginner to Advanced)

This is a full beginner-friendly guide. Even if you never used Excel before, you will understand VLOOKUP step by step.

What is VLOOKUP (Very Simple)?

VLOOKUP means: Find something in a table and return matching data.

Example: You have ID → You want Price → VLOOKUP finds it for you.

VLOOKUP Formula

=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
  • lookup_value → What you are searching (ID)
  • table_array → Where to search (table)
  • col_index_num → Which column to return
  • range_lookup → FALSE = exact match

Step-by-Step (Very Easy)

  1. Click empty cell
  2. Type =VLOOKUP(
  3. Select lookup value
  4. Select full table
  5. Enter column number
  6. Type FALSE
  7. Press Enter

Example 1 (Same Sheet)

IDNamePrice
101Clip A5
102Clip B7
103Clip C9
=VLOOKUP(102, A2:C4, 3, FALSE)

Result → 7

Example 2 (Another Sheet)

=VLOOKUP(A2, Sheet2!A2:C10, 3, FALSE)

This pulls data from another worksheet.

Important Rules

  • Lookup column must be FIRST column
  • Always use FALSE for exact match
  • Use $ to lock table → $A$2:$C$10
  • Cannot look left ❌

Common Errors

  • #N/A → Value not found
  • #REF! → Column number wrong
  • #VALUE! → Wrong input type
Fix: Check spelling, numbers, and table range.

Practice

IDNamePrice
201Item A10
202Item B20
203Item C30

إرسال تعليق