Skip to content
Blog/Google Sheets
Google Sheets

Google Sheets VLOOKUP From Another Sheet

Use VLOOKUP across tabs in Google Sheets to pull owner, stage, rate, client, or category details from a separate lookup table.

/5 min read

VLOOKUP from another sheet in Google Sheets pulls a matching value from a different tab. It is useful when one tab is the working table and another tab stores reference data such as clients, products, owners, rates, categories, or deal stages.

Use this pattern when you want one source of truth for lookup data instead of copying the same values into every row manually.

The syntax

fx
=VLOOKUP(search_key, range, index, [is_sorted])
  • search_key - the value to find
  • range - the lookup table, including the matching column and return columns
  • index - which column in the range should be returned
  • [is_sorted] - use FALSE for exact matches in most operating sheets

Basic cross-sheet example

Say your working tab has client IDs in A2:A, and a tab named Clients has ID, client name, owner, and hourly rate in columns A through D.

To return the client owner:

fx

To return the hourly rate:

fx

That works well in an invoice template or CRM lead tracker when client details should be maintained in one reference tab.

Sheet names with spaces

If the sheet name contains spaces, wrap it in single quotes:

fx

Without the quotes around the sheet name, Google Sheets will not read the tab reference correctly.

Avoid exact-match surprises

Use FALSE for exact matches unless the lookup table is intentionally sorted for approximate matching.

fx

Most CRM, sales, invoice, and project workflows need exact matches. Approximate matching can return a value that looks valid but belongs to the wrong row.

WATCH OUT

VLOOKUP only searches the first column of the selected range. If the lookup key is not the first column, use XLOOKUP or INDEX MATCH instead.

Common VLOOKUP problems

ProblemWhy it happensFix
#N/ANo exact match was foundCheck spelling, spaces, and ID values
Wrong value returnedColumn index points to the wrong fieldCount columns inside the selected range
Lookup breaks after columns moveVLOOKUP uses a fixed column indexUse XLOOKUP or update the index
Sheet name errorTab name has spacesWrap the tab name in single quotes

The Griddy way

Cross-sheet lookups are fragile when IDs are inconsistent or the return column keeps moving.

"Pull the owner and billing rate from the Clients tab into this invoice log, use exact matches, and flag any client IDs that do not match"

Griddy can build the lookup formulas, check the reference tab, and identify missing or mismatched keys before the sheet gets used for billing or review.

Skip the manual work

Describe it. Griddy does it.

Instead of writing this formula yourself, just tell Griddy what you need in plain English. Works in Excel and Google Sheets.

Use this on real templates

Pull reference data into live operating sheets

Cross-sheet lookups are common when templates need owners, rates, client details, categories, or status information from a separate source tab.

Sales