How to Get Data from Another Sheet in Excel

If you just need to get data from another sheet in excel 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: type = in the destination cell, click the other sheet's tab, click the cell you want and press Enter — Excel writes =Sheet2!B2 for you.

On this page7
Annotated stepsExcel
1

In the destination cell type =.

2

Click the other sheet's tab, then click the cell you want.

3

Press Enter — Excel writes the reference, quoting the sheet name if it needs quoting.

4

To pull a matching row rather than a fixed cell, use =XLOOKUP(key, OtherSheet!keys, OtherSheet!values, "not found").

5

Anchor the ranges with $ (or use whole columns) before filling the formula down.

6

For another workbook, keep both files open while you build the reference so Excel writes the path correctly.

=Sheet2!B2
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

A reference to another sheet is the sheet name, an exclamation mark, then the cell: =Sheet2!B2. If the sheet name contains a space it must be quoted: ='Q1 Sales'!B2. Building it by pointing rather than typing is worth the habit, because Excel adds the quotes and gets the name exactly right. There are three levels to this. A direct reference copies one cell. A lookup — XLOOKUP or VLOOKUP with the table argument on the other sheet — pulls the matching ROW for a key, which is what "pull data from another sheet" usually means in practice. And a reference to another FILE adds the workbook in square brackets, ='[Budget.xlsx]Sheet1'!$B$4, which brings the whole external-link problem with it: the path is stored, so moving the source breaks the link, and a closed source shows the last cached value. Within one workbook there is no such fragility. 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. For “get data from another sheet in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected sheet change, and only then apply the same setup to the full sheet. 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. That is what makes a workflow that saves repeating the same clicks every week useful in real work: repeatable, auditable, and not dependent on memory or luck.

A worked example

Summary needs each product's price from a Prices sheet keyed by SKU. In Summary!C2: =XLOOKUP(A2, Prices!$A:$A, Prices!$C:$C, "not found"). The $ anchors keep the lookup columns fixed as the formula fills down, and the fourth argument replaces #N/A with something a reader can act on. For a single fixed cell instead — a rate that lives in one place — =Rates!$B$1 is all you need. Keeping reference data on its own sheet and pointing at it beats copying it around, because there is then exactly one place where a wrong number can live. 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

References to another workbook do not carry over: Excel's [Workbook.xlsx]Sheet1!B4 syntax is not valid in Google Sheets, where data from another spreadsheet is pulled in with IMPORTRANGE. References to another tab in the same file (Sheet2!B4) work in both. Some functions on this page are newer additions to Excel: they are in current Microsoft 365 and Excel for the web, while older perpetual Excel versions return #NAME?. Google Sheets maintains its own function list, so confirm each function exists there before relying on the same formula. Nothing on this page is behind a login or a download: the exact answer is at the top, and the detail below it is there for when you need it. That is the whole promise here — the answer first, and just enough context to make it stick. If you take one thing from this page on “get data from another sheet in excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.

Common mistakes

  • Typing the sheet name by hand and missing the quotes a name with spaces needs.
  • Filling a lookup down without $ anchors, so the lookup range slides off the bottom of the source data.
  • Renaming the source sheet after building references with INDIRECT — normal references update, INDIRECT does not.
  • Linking to another workbook where a sheet in the same file would do, and inheriting broken links when the file moves.
  • Leaving the lookup's not-found case as a bare #N/A, which breaks every total that includes the column.

Frequently asked questions

How do I pull data from another sheet in Excel?

Type = in the destination, click the other sheet tab, click the cell, press Enter. Excel writes =Sheet2!B2.

How do I reference a sheet whose name has a space?

Wrap the name in single quotes: ='Q1 Sales'!B2. Building the reference by clicking does this for you.

How do I pull a matching row from another sheet?

Use a lookup: =XLOOKUP(A2, Prices!$A:$A, Prices!$C:$C, "not found"), or VLOOKUP if XLOOKUP is not available in your version.

Can I pull data from another workbook?

Yes, and the reference gains the file name in brackets: ='[Budget.xlsx]Sheet1'!$B$4. The path is stored, so moving or renaming the source breaks the link.

Other ways people ask this

On the way here you may have searched this as “excel get data from another sheet”, “get data from different sheet excel”, “excel get value from another sheet” and “excel get distinct values from column in another sheet” — it is all the same task, and this page is the single, complete answer to it.

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

Because the same task has many names. “excel get data from another sheet”, “get data from different sheet excel”, “excel get value from another sheet” all point at the one operation explained on this page, which is why they all lead here.