Guide

How to do VLOOKUP in Excel with two spreadsheets

A common office task is comparing one spreadsheet with another: HR master against email dump, asset list against vendor billing, or invoice list against payment records. VLOOKUP can help, but the setup must be exact.

Keywords: how to do vlookup in excel with two spreadsheets, vlookup formula pdf, vlookup and hlookup formula

Step 1: choose the common key

Pick the column that exists in both spreadsheets. Good keys include employee code, email address, asset serial number, asset tag, invoice number or vendor reference. Avoid names if a better key exists.

Step 2: keep lookup key in the first column

Classic VLOOKUP searches the first column of the selected table. If your lookup key is not first, rearrange a copy of the data or use XLOOKUP/INDEX MATCH instead.

Step 3: write the formula

In the source sheet, reference the lookup value, target table range, return column number and exact-match setting. Wrap the formula with IFERROR to show a friendly missing message.

Step 4: review missing and duplicates

A not-found result means the key was not found, but it does not automatically tell you about duplicates or conflicts. Check duplicate keys before final management reporting.

ReconNimble method

Upload both spreadsheets, select the matching key, run reconciliation and export missing records, duplicates, matched rows and an action sheet. The workflow is safer for full-file comparison than copying formulas row by row.

Formula examples

Copy-ready examples

Build your own

Across two sheets in same workbook

=IFERROR(VLOOKUP(A2,Sheet2!A:D,4,FALSE),"Missing")

Named vendor sheet example

=IFERROR(VLOOKUP(B2,'Vendor Billing'!A:F,6,FALSE),"Not billed")

XLOOKUP alternative

=XLOOKUP(A2,Sheet2!A:A,Sheet2!D:D,"Missing")
FAQ

Questions about how to do vlookup in excel with two spreadsheets

Why is my VLOOKUP not working across sheets?

Common reasons include wrong range, lookup key not in first column, extra spaces, number stored as text or approximate match accidentally used.

Should I use FALSE in VLOOKUP?

For reconciliation and audit work, use FALSE for exact match.

Can I avoid formulas completely?

Yes. ReconNimble lets you upload both files and compare them with a guided workflow.

Related guides

Continue building formula and reconciliation knowledge.

XLOOKUP in Excel: what it is and how to use it

xlookup

Read

XLOOKUP vs VLOOKUP: practical comparison for reconciliation

xlookup vs vlookup

Read

XLOOKUP in Google Sheets and practical alternatives

xlookup in google sheets

Read

VLOOKUP and HLOOKUP in Excel: simple guide with examples

vlookup and hlookup formula

Read