Challenge - 5 Problems
Google Docs Linking Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the output of this formula linking a Google Doc?
You have a Google Sheet with this formula in cell A1:
What will this formula do?
=IMPORTDATA("https://docs.google.com/document/d/e/2PACX-1vQabc12345/pub?output=csv")What will this formula do?
Attempts:
2 left
💡 Hint
Think about what IMPORTDATA does with URLs that point to CSV or TSV files.
✗ Incorrect
IMPORTDATA imports data from a URL that points to CSV or TSV files. If the Google Doc is published as CSV, it imports the content as table data.
❓ Function Choice
intermediate2:00remaining
Which function correctly imports a table from a published Google Doc into Sheets?
You want to import a table from a Google Doc published as a web page. Which function should you use in Google Sheets?
Attempts:
2 left
💡 Hint
Think about which function imports tables or lists from web pages.
✗ Incorrect
IMPORTHTML imports tables or lists from web pages, which works well with Google Docs published as web pages containing tables.
🎯 Scenario
advanced2:00remaining
You want to keep your Google Sheet updated with changes from a Google Doc table. What is the best approach?
You have a Google Doc with a table that changes often. You want your Google Sheet to update automatically when the Doc changes. Which method is best?
Attempts:
2 left
💡 Hint
Consider which method allows automatic updates without manual work.
✗ Incorrect
Publishing the Doc as a web page and using IMPORTHTML imports the table live, so changes in the Doc update the Sheet automatically.
📊 Formula Result
advanced2:00remaining
What error will this formula produce?
In Google Sheets, you enter:
What will happen?
=IMPORTRANGE("https://docs.google.com/document/d/abc123", "Sheet1!A1:B2")What will happen?
Attempts:
2 left
💡 Hint
IMPORTRANGE works only with Google Sheets URLs.
✗ Incorrect
IMPORTRANGE only works with Google Sheets URLs, not Google Docs, so it returns a #REF! error.
❓ data_analysis
expert2:00remaining
How many rows will be imported by this formula?
You publish a Google Doc containing a table with 5 rows and 3 columns as a web page. In Google Sheets, you use:
How many rows will this formula import?
=IMPORTHTML("published_doc_url", "table", 1)How many rows will this formula import?
Attempts:
2 left
💡 Hint
IMPORTHTML imports the entire table including headers.
✗ Incorrect
IMPORTHTML imports the whole table including the header row, so 5 rows total if the table has 5 rows.