0
0
Google Sheetsspreadsheet~10 mins

Linking Sheets with Docs in Google Sheets - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the formula to import data from another Google Sheet using its URL.

Google Sheets
=IMPORTRANGE([1], "Sheet1!A1:B10")
Drag options to blanks, or click blank then click option'
A"Sheet1!A1:B10"
B"https://docs.google.com/spreadsheets/d/abc123xyz/edit"
CSheet1!A1:B10
DA1:B10
Attempts:
3 left
💡 Hint
Common Mistakes
Forgetting to put the URL in quotes
Using the range without quotes
Using only the sheet name without range
2fill in blank
medium

Complete the formula to link a specific cell from another sheet using IMPORTRANGE.

Google Sheets
=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123xyz/edit", [1])
Drag options to blanks, or click blank then click option'
A"C5"
BSheet2!C5
C"Sheet2!C5"
DC5
Attempts:
3 left
💡 Hint
Common Mistakes
Not including quotes around the range
Using only the cell without sheet name
Using incorrect range format
3fill in blank
hard

Fix the error in the formula to correctly link data from another sheet.

Google Sheets
=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123xyz/edit", [1])
Drag options to blanks, or click blank then click option'
A"A1:B5"
BSheet1!A1:B5
CA1:B5
D"Sheet1!A1:B5"
Attempts:
3 left
💡 Hint
Common Mistakes
Leaving the range unquoted
Omitting the sheet name
Using only cell range without sheet name
4fill in blank
hard

Fill both blanks to create a formula that imports data and sums the first column.

Google Sheets
=SUM(IMPORTRANGE([1], [2]))
Drag options to blanks, or click blank then click option'
A"https://docs.google.com/spreadsheets/d/abc123xyz/edit"
B"Sheet1!A1:A10"
CSheet1!A1:A10
DA1:A10
Attempts:
3 left
💡 Hint
Common Mistakes
Not quoting the URL or range
Using range without sheet name
Using incorrect range format
5fill in blank
hard

Fill all three blanks to create a formula that imports data, filters rows where column B is greater than 50, and sums column A.

Google Sheets
=SUM(FILTER(IMPORTRANGE([1], [2]), IMPORTRANGE([1], [3]) > 50))
Drag options to blanks, or click blank then click option'
A"https://docs.google.com/spreadsheets/d/abc123xyz/edit"
B"Sheet1!A1:A100"
C"Sheet1!B1:B100"
D"Sheet1!C1:C100"
Attempts:
3 left
💡 Hint
Common Mistakes
Using different URLs in the same formula
Not quoting ranges
Mixing up column ranges