Recall & Review
beginner
What does the IMPORTRANGE function do in Google Sheets?
IMPORTRANGE lets you pull data from one Google Sheets spreadsheet into another. It connects sheets by using the spreadsheet's URL and the range you want to import.
Click to reveal answer
beginner
What is the correct syntax for IMPORTRANGE?
The syntax is: <br>
=IMPORTRANGE(spreadsheet_url, range_string)<br>where spreadsheet_url is the link to the other sheet, and range_string is the range like "Sheet1!A1:C10".Click to reveal answer
beginner
Why do you sometimes see a #REF! error when using IMPORTRANGE for the first time?
Google Sheets asks you to allow access to the other spreadsheet. You must click the prompt to grant permission before data appears.
Click to reveal answer
beginner
Can IMPORTRANGE update data automatically when the source spreadsheet changes?
Yes! IMPORTRANGE updates the imported data automatically when the source spreadsheet changes, so you always see the latest data.
Click to reveal answer
beginner
How do you specify a range from a different sheet inside the same spreadsheet URL in IMPORTRANGE?
Use the sheet name followed by an exclamation mark and the cell range, like "Sheet2!A1:B5" inside the range_string argument.
Click to reveal answer
What do you need to provide first when using IMPORTRANGE?
✗ Incorrect
IMPORTRANGE requires the URL of the other spreadsheet to know where to get the data.
What happens if you don’t allow access when prompted by IMPORTRANGE?
✗ Incorrect
Without permission, IMPORTRANGE cannot access the data and shows a #REF! error.
How do you write the range to import cells A1 to C10 from a sheet named 'Data'?
✗ Incorrect
The correct format is sheet name, exclamation mark, then cell range.
Does IMPORTRANGE update data automatically when the source changes?
✗ Incorrect
IMPORTRANGE keeps your data current by updating automatically.
Which of these is a valid IMPORTRANGE formula?
✗ Incorrect
You must provide the spreadsheet URL as a string and the range as a string.
Explain how to use IMPORTRANGE to bring data from another Google Sheets file into your current sheet.
Think about the two main pieces of information IMPORTRANGE needs.
You got /4 concepts.
What should you do if IMPORTRANGE shows a #REF! error after entering the formula?
Remember the first time you connect, Google Sheets asks for permission.
You got /3 concepts.