VLOOKUP Two Sheets

If you just need to vlookup two sheets and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: use =VLOOKUP(lookup_value, table_array, col_index_num, FALSE) — it finds a value in the leftmost column of a table and returns a value from a column to its right, with FALSE forcing an exact match.

Syntax

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

Arguments

ArgumentDescription
lookup_valuerequiredThe value to look for in the first column of the table.
table_arrayrequiredThe range that holds the data, with the lookup column on the far left.
col_index_numrequiredThe column number to return from, counted from the left of table_array (1 = first column).
range_lookupoptionalFALSE for an exact match, TRUE or omitted for an approximate match on sorted data.

Related functions

XLOOKUPINDEX/MATCHIFERROR
Annotated stepsExcel
1

In the result cell type =VLOOKUP( and click the cell holding the value to find.

2

Select the whole table as table_array, making sure the lookup column is the leftmost one.

3

Count columns from the left of that range to the answer column and type that number as col_index_num.

4

Type FALSE as the fourth argument to force an exact match.

5

Press Enter and fill the formula down the column.

Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

VLOOKUP searches down the first column of a table for a value, then returns whatever sits in the same row in a column you choose by number. It is the classic Excel lookup: you give it the value to find, the table, the column count, and a FALSE flag for an exact match. The catch is that it only looks to the right of the lookup column and you must count the return column yourself. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “vlookup two sheets”. Start on a copy or a tiny sample, keep the affected sheet visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a data step that keeps your analysis trustworthy, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

Employee names are in A2:A100 and salaries in C2:C100, so the table spans A2:C100. To pull the salary for the name in E2: =VLOOKUP(E2, A2:C100, 3, FALSE). Column 3 is the salary column counted from A, and FALSE returns #N/A rather than a wrong row if the name is missing. For "Maria" in E2 this returns 54000. VLOOKUP is the most widely used lookup in Excel and works in every version, so it stays the go-to when a file must open in older Excel that lacks XLOOKUP. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.

In Google Sheets

Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. The short version of “vlookup two sheets”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

Common mistakes

  • Leaving off FALSE, so VLOOKUP does an approximate match and returns the wrong row when the data is not sorted.
  • Counting col_index_num from the worksheet column A instead of from the left edge of table_array.
  • Trying to return a value to the left of the lookup column — VLOOKUP can only look right, so use INDEX/MATCH or XLOOKUP instead.

Frequently asked questions

Why does VLOOKUP return #N/A?

The lookup value was not found in the first column. Common causes are stray spaces (wrap the value in TRIM), numbers stored as text, or a lookup value that simply is not present. Wrapping the formula in IFERROR can replace #N/A with friendlier text.

Can VLOOKUP look to the left?

No. VLOOKUP only returns columns to the right of the lookup column. To pull a value from a column further left, use INDEX/MATCH or XLOOKUP, which search in any direction.

What does the FALSE at the end do?

FALSE forces an exact match. TRUE or an omitted fourth argument does an approximate match that requires the first column to be sorted ascending and can silently return a wrong row, so always add FALSE for normal lookups.

Other ways people ask this

People reach this page typing “how to use vlookup in excel with two sheets”, “how to use vlookup in two excel sheets”, “vlookup for two excel sheets” and “vlookup in excel in two sheets”, among other phrasings; whichever wording you used, the fix above is the one you want.

This guide also answers

  • excel vlookup multiple sheets
  • how to do a vlookup in excel from two spreadsheets
  • how to do vlookup in excel with two spreadsheets
  • vlookup 2 sheets excel

Platform & version notes

  • Several of those searches mention Google Sheets — and the good news is that "vlookup two sheets" works there almost identically: the formula syntax carries over unchanged, only the surrounding menus sit across the top of the screen instead of in a ribbon.

Can I do this in Google Sheets too?

Yes. "vlookup two sheets" carries over to Google Sheets with the same formula and almost the same steps — the menus are arranged differently, but the result is identical.

Why do people search for this in so many different ways?

Because the same task has many names. “how to use vlookup in excel with two sheets”, “how to use vlookup in two excel sheets”, “vlookup for two excel sheets” all point at the one operation explained on this page, which is why they all lead here.