VLOOKUP Between Two Sheets in Google Sheets: Easy Step-by-Step Guide with Examples
GSheetLab Expert
Author
2026-05-05
Published
Learn how to use VLOOKUP between two sheets in Google Sheets. Find data across spreadsheets with simple examples, correct syntax, and common troubleshooting tips.
Many people use Google Sheets to organize data, make reports, and link information from different datasets. VLOOKUP is one of the most useful features in Google Sheets, especially when you need to look for information across multiple sheets.
What is VLOOKUP in Google Sheets?
VLOOKUP (Vertical Lookup) is a function that looks for a value in the first column of a range and returns a value from another column in the same row that matches. Basic VLOOKUP syntax:
=VLOOKUP(search_key, range, index, [is_sorted])Example Scenario
Imagine you have two sheets. Sheet 1 contains order IDs and customer names, while Sheet 2 contains order IDs and the corresponding products.
Sheet 1: Orders
| Order ID | Customer Name |
|---|---|
| 101 | Ali |
| 102 | Sara |
Sheet 2: Product Details
| Order ID | Product |
|---|---|
| 101 | Laptop |
| 102 | Phone |
How to Do VLOOKUP Between 2 Sheets
To get the product name in Sheet 1 from Sheet 2, you would use a cross-sheet reference. Assume Sheet 2 is named 'Products':
=VLOOKUP(A2, Products!A:B, 2, FALSE)Real World Use Cases
- Business Inventory Management (Syncing stock levels with orders)
- Employee Records (Retrieving department info by ID)
- E-commerce Dashboards (Pulling profit margins into sales reports)
- Student Management Systems (Matching grades with student info)
Common Mistakes
- Wrong Sheet Name (Ensure you use SheetName!Range)
- Incorrect Column Index (Check if your column count is accurate)
- Missing FALSE for Exact Match (Crucial for unique IDs)
- Extra Spaces in Data (Use TRIM to clean your data)
Learning how to do a VLOOKUP between 2 sheets is a major step toward mastering Google Sheets. It allows you to connect data across multiple tables, automate reporting, and eliminate manual work.
Did you find this helpful? Share it with your team.