0
0
Google Sheetsspreadsheet~10 mins

Creating and opening spreadsheets in Google Sheets - Formula Evaluation Walkthrough

Choose your learning style9 modes available
Sample Data

A simple spreadsheet with names and ages.

CellValue
A1Name
B1Age
A2Alice
B230
A3Bob
B325
Formula Trace
IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123xyz456", "Sheet1!A1:B3")
Step 1: IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123xyz456", "Sheet1!A1:B3")
Step 2: Data fetched: [["Name", "Age"], ["Alice", 30], ["Bob", 25]]
Cell Reference Map
  A       B
1 Name    Age
2 Alice   30
3 Bob     25

Formula references external spreadsheet range Sheet1!A1:B3
The formula imports the range A1:B3 from another spreadsheet, which contains names and ages.
Result
  A       B
1 Name    Age
2 Alice   30
3 Bob     25
The imported data appears in the current sheet exactly as it is in the source spreadsheet.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the IMPORTRANGE formula do?
AIt deletes data from the sheet.
BIt imports data from another Google Sheets file.
CIt creates a new spreadsheet.
DIt sorts data in the current sheet.
Key Result
IMPORTRANGE("spreadsheet_url", "sheet_name!range") imports data from another Google Sheets file.