204

Each month, I create a new Google spreadsheet that relies on figures from the previous month's file.

I'd like to import these values using a formula rather than manually cutting and pasting them.

How can this be done?

Example

Sheet1 of Monthly-2010-DEC

// Spreadsheet above relies // on data from the one below

Sheet1 of Monthly-2010-NOV

Blindspots
  • 7,737
  • 5
  • 20
  • 39
Jeff Yates
  • 2,575
  • 2
  • 19
  • 23

8 Answers8

210

IMPORTRANGE() appears to be the function you want.

From the Google spreadsheets function list:

Google Spreadsheets lets you reference another workbook in the spreadsheet that you're currently editing by using the ImportRange function. ImportRange lets you pull one or more cell values from one spreadsheet into another. To create your own ImportRange formulas, enter =importRange(spreadsheet-key, range). For languages where comma is used for decimal separation, use a semicolon instead of a comma to separate arguments in your formula.

Spreadsheet-key is a STRING which is the key value from the spreadsheet URL.

Range is a STRING representing the range of cells you want to import, optionally including the sheet name (defaults to first sheet). You can also use a range name if you prefer.

Given that the two arguments are STRINGs, you need to enclose them in quotes or refer to cells which have string values in them.

For example:

=importrange("abcd123abcd123", "sheet1!A1:C10") "abcd123abcd123" is the value in the "key=" attribute on the URL of the target spreadsheet and "sheet1!A1:C10" is the range which is desired to be imported.

=importrange(A1,B1) Cell A1 contains the string ABCD123ABCD123 and cell B1 contains sheet1!A1:C10

Note: In order to use ImportRange, you need to have been added as a viewer or collaborator to the spreadsheet from which ImportRange is pulling the data. Otherwise, you'll get this error: "#REF! error: The requested spreadsheet key, sheet title, or cell range was not found."

"key" is, of course, the string in the URL for the spreadsheet that matches to the key= parameter.

I just tested it by creating two spreadsheets. In cell A1 of the first, I put a string. In cell A1 of the second, I put =importRange("tgR2P4UTz_KT0Lc270Ijb_A","A1") and it displayed the string from the first spreadsheet. (Your key will obviously be different.)

(The format of the function may depend on your locale. In France the formula is not valid with a comma, so you'll need to replace it with a semi-colon: =importRange("tgR2P4UTz_KT0Lc270Ijb_A";"A1"))

NOTES:

  1. Google currently sets a hard limit of 50 "cross-workbook reference formulas" per spreadsheet. Source: Google Docs, Sheets, and Slides size limits. (h/t JJ Rohrer)

  2. The "new" Google Spreadsheet (soon to be the standard) removes the 50 limit of 50 "cross-workbook reference formulas (Google Support) (h/t Jacob Jan Tuinstra)

  3. In the "new" Google Sheets you also use the entire URL as the key (Google Support) (h/t Punchlinern)

user0
  • 27,169
  • 10
  • 55
  • 81
ale
  • 52,972
  • 42
  • 165
  • 314
36

FYI if you want to reference another sheet within that other spreadsheet, the sheet name should NOT be re-quoted:

use

=importRange("tgR2P4UTz_KT0Lc270Ijb_A","Sheet Name!A1:A10")

instead of

=importRange("tgR2P4UTz_KT0Lc270Ijb_A","'Sheet Name'!A1:A10")

0blivious
  • 369
  • 3
  • 2
9

In the new interface, you should simply be able to type = in the cell, then just go to the other sheet and pick the cell you want. If you want to do it manually, or are using the old interface, you can simply do =Sheet1!A1, where Sheet1 is the name of the sheet, and A1 is the cell on that sheet you care about. This is identical to Microsoft Excel.

Benjamin Pollack
  • 1,994
  • 1
  • 18
  • 24
4

I found this syntax using Insert -> Define new range

RANGE FOR REFERENCING OTHER SPREADSHEET:

Whole A column: 'Spreadsheet With Spaces in the name'!A:A

Whole B column: 'Spreadsheet With Spaces in the name'!B:B

etc.

Then you can use it as:

=COUNTIF('First Page'!B:B, "valueToMatch")
Tom Roggero
  • 201
  • 1
  • 4
3

here is how I did it (reimplemented 'importrange()'):

  • open the script editor ("tools" -> "scripts" -> "script editor")
  • provide a function like this (without any checks, this has to be improved but you get the general idea):
function REMOTEDATA(inKey, inRange) {

  var outData;  
  var ss = SpreadsheetApp.openById(inKey);

  if (ss) {
     outData = ss.getRange(inRange).getValues();
  }

  return outData;
}
  • use this formula like this in your spreadsheet:
=SUM(REMOTEDATA("key", "SheetName!A1:A10"))

"key" is the key of the document, you find it in the "key=xyz" parameter of the document URL.

the documentation for 'spreadsheet services' provides more information on the topic.

user0
  • 27,169
  • 10
  • 55
  • 81
akira
  • 5,736
  • 2
  • 30
  • 30
1

Yes, it is possible to import values from one spreadsheet to another dynamically in Google Sheets. To do this, you can use the IMPORTRANGE function.

The IMPORTRANGE function allows you to import a range of cells from one spreadsheet to another. You can use it to import values from a previous month's spreadsheet into your current monthly spreadsheet.

Here is the syntax for the IMPORTRANGE function:

IMPORTRANGE(spreadsheet_url, range_string)
  • spreadsheet_url: The URL of the spreadsheet that you want to import data from.
  • range_string: The range of cells that you want to import, in A1 notation. For example, "Sheet1!A1:B5" would import the range of cells from A1 to B5 on Sheet1 of the source spreadsheet.

Here is an example of how you can use the IMPORTRANGE function to import values from a previous month's spreadsheet:

=IMPORTRANGE("https://docs.google.com/spreadsheets/d/1fZwYzY4H5Vuq4vQP7g-kTdF1Xn3nqr2_KjtSlB", "Sheet1!A1:B5")

This formula will import the range of cells from A1 to B5 on Sheet1 of the source spreadsheet (located at the URL provided) into the current spreadsheet.

Keep in mind that the IMPORTRANGE function only works if the source spreadsheet is shared with you, and you have permission to access it. You will also need to authorize the import by following the prompts that appear when you enter the formula.

I hope this helps! Let me know if you have any other questions.

-1

As the question did not specify how the data is to be used, it is worth noting that IMPORTRANGE can be used anywhere a range can be used, for example, as the range argument to a VLOOKUP:

=VLOOKUP($C24,IMPORTRANGE("https://docs.google.com/spreadsheets/d/ABCDEFGHIJKLMNOP1234/edit#gid=0","Product List!$C$3:$H$31"), 4, false)

(fake spreadsheet URL for demo purposes).

Jason Clark
  • 151
  • 5
-2

I did it the very easy way by using Query, for example, I have 2 sheets ABC and XYZ and I want to import range from A1 to C30 from Abc into XYZ, click the cell where you want the range to appear and write this:

=QUERY(ABC!A1:C30)

Note: If your sheet name has spaces then, of course, you write this:

=QUERY('ABC 1'!A1:C30)

user0
  • 27,169
  • 10
  • 55
  • 81
Qamar
  • 9