Damoa - Handy Tools

VLOOKUP / XLOOKUP Guide

Interactively compare VLOOKUP and XLOOKUP, and learn migration patterns.

Ad

Reference Table

ABCDE
Product IDNameCategoryPriceStock
P001소파거실500,000원12
P002침대침실600,000원8
P003책상서재250,000원20
P004의자서재150,000원35
P005옷장침실450,000원6

Try It Yourself

VLOOKUPLegacy
=VLOOKUP("P001",A2:E6,2,FALSE)

lookup_value: the value to find

table_array: range where col 1 is the key

col_index_num: return column 2

FALSE = exact match

소파
XLOOKUPModern (Microsoft 365)
=XLOOKUP("P001",A2:A6,B2:B6)

lookup_value: the value to find

lookup_array: the column to search

return_array: the column to return

소파

XLOOKUP Advantages

  • Can look left (VLOOKUP only goes right)
  • Uses range references instead of column numbers — survives column inserts
  • Built-in error handling (no IFERROR needed)
  • More intuitive approximate match modes
  • Can return multiple columns at once with an array
Ad
VLOOKUP/XLOOKUP Guide: Compare both functions in real time using sample data. Change the search value and return column to see live results, then visit the Migration tab to learn how to convert VLOOKUP formulas to XLOOKUP.
Ad