How to Use IMPORTRANGE Function in Google Sheets
In this article, you will learn how to refer to a range in another Google Sheets file by the IMPORTRANGE function. In Google Sheets, you can’t refer to another file without any formula, so this function is beneficial for connecting two files and keeping imported information updated.
How to use IMPORTRANGE formula in Google Sheets
- Type in “IMPORTRANGE” or navigate to the “Insert” tab (or “Functions” icon) → “Function” → “Web” → “IMPORTRANGE”.
- Open a Google Sheets file you want to refer to.
- Copy the URL of the file.
- Insert the URL in the formula and enclose it wilt quotation marks.
- Type in a sheet name and range in the formula and surround them with quotation marks.
- As you see “#REF” in the cell and its note stating, “You need to connect these sheets”, click “Allow access” in the note.
The general syntax is as follows:
Spredseet_url: You need to insert an URL in this argument. The quotation marks must be added at the beginning and end of the URL such as “XXX”.
Range_srting: This argument requires a sheet name and range. The two items must be combined with “!”, an exclamation mark, and enclosed with quotation marks. You can type in Named Range instead of inputting row and column indexes for the range in the referred file. For example, if you want to refer to a range of B2:F17 on a sheet named Sample, the argument should be “Sample!B2:F17”.
Look at a more specific example. Assume you want to refer to the data under the following assumptions.
Sheet: Consolidated P&L Dashboard
Range: A16:F24
With these assumptions, the IMPORTRANGE formula must look as below.
=IMPORTRANGE(“https://docs.google.com/spreadsheets/d/1BmOfn6fpSZFQ-Ld2Ec65e8ZKX9ccFWggfWov5u37TNQ/edit#gid=2029313979”, “Consolidated P&L Dashboard!A16:F24”)
Once you allow access and wait until the formula completes loading, you can see values from the referred range, as shown below.
Note the following points:
- You need to secure enough space for the formula to spread the imported values.
- The formula imports values without formatting, row height, or column width. So, you need to copy and paste the formatting in the source file if needed.
- If there is any update in the selected range in the source file, the IMPORTRANGE function reflects the change immediately, so the imported information is always up-to-date.