Challenge - 5 Problems
IMPORTDATA Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What does IMPORTDATA return for a CSV URL?
You use the formula
What will be the output in the sheet starting from the cell with the formula?
=IMPORTDATA("https://example.com/data.csv") in a Google Sheets cell. The CSV file contains:name,age,city Alice,30,New York Bob,25,Los Angeles
What will be the output in the sheet starting from the cell with the formula?
Google Sheets
=IMPORTDATA("https://example.com/data.csv")Attempts:
2 left
💡 Hint
IMPORTDATA imports the whole CSV as a table, splitting by commas and new lines.
✗ Incorrect
IMPORTDATA fetches the CSV file and splits it into rows and columns automatically, placing each value in its own cell.
📊 Formula Result
intermediate2:00remaining
How does IMPORTDATA handle TSV files?
You enter
What will be the output in the sheet?
=IMPORTDATA("https://example.com/data.tsv") where the TSV file contains:product price quantity Pen 1.5 10 Notebook 3.0 5
What will be the output in the sheet?
Google Sheets
=IMPORTDATA("https://example.com/data.tsv")Attempts:
2 left
💡 Hint
IMPORTDATA supports both CSV and TSV files and splits by commas or tabs accordingly.
✗ Incorrect
IMPORTDATA detects the tab separators in TSV files and imports the data into separate cells accordingly.
❓ Function Choice
advanced2:00remaining
Which formula correctly imports a CSV file from a URL?
You want to import data from a CSV file at
https://data.example.com/info.csv. Which formula will correctly import the data as a table?Attempts:
2 left
💡 Hint
IMPORTDATA is designed for CSV and TSV files, while others are for HTML, XML, or other sheets.
✗ Incorrect
IMPORTDATA fetches CSV or TSV files and imports them as tables. IMPORTHTML and IMPORTXML are for web pages, IMPORTRANGE is for other Google Sheets.
🎯 Scenario
advanced2:00remaining
You want to import a CSV but only get an error
You use
=IMPORTDATA("https://example.com/data.csv") but get an error: "Could not fetch URL". What is the most likely reason?Attempts:
2 left
💡 Hint
IMPORTDATA can only fetch files from URLs that anyone can access without login.
✗ Incorrect
IMPORTDATA requires the URL to be publicly accessible. If login or permissions are needed, it cannot fetch the file.
❓ data_analysis
expert2:00remaining
How many rows and columns does IMPORTDATA produce?
You import a CSV file with 5 rows and 4 columns using
How many rows and columns will the imported data occupy in the sheet?
=IMPORTDATA("https://example.com/sample.csv"). The CSV has a header row plus 4 data rows.How many rows and columns will the imported data occupy in the sheet?
Attempts:
2 left
💡 Hint
IMPORTDATA imports all rows including the header, and all columns as in the CSV.
✗ Incorrect
The CSV has 5 rows total (1 header + 4 data) and 4 columns, so IMPORTDATA fills 5 rows and 4 columns in the sheet.