Table of Contents

VLOOKUP

The vlookup function is useful when you have two tables, where both tables have a common identifier such as a primary key from a database table, and you want to add column to table 1 with data pulled from a matching row in table 2.

Example:

=IFERROR(VLOOKUP(A3,Sheet1!A:B,2,FALSE),"")

Tips