0
0
Google Sheetsspreadsheet~10 mins

IMPORTDATA for CSV/TSV 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 a CSV URL.

Google Sheets
=IMPORTDATA([1])
Drag options to blanks, or click blank then click option'
AIMPORTCSV
Bdata.csv
CA1
D"https://example.com/data.csv"
Attempts:
3 left
💡 Hint
Common Mistakes
Forgetting to put the URL in quotes
Using a cell reference without quotes
Using a function name that doesn't exist
2fill in blank
medium

Complete the formula to import data from a TSV URL.

Google Sheets
=IMPORTDATA([1])
Drag options to blanks, or click blank then click option'
A"https://example.com/data.tsv"
Bdata.tsv
CA2
DIMPORTTSV
Attempts:
3 left
💡 Hint
Common Mistakes
Using a local file name without quotes
Using a function that does not exist like IMPORTTSV
Not including the full URL
3fill in blank
hard

Fix the error in the formula to correctly import CSV data.

Google Sheets
=IMPORTDATA([1])
Drag options to blanks, or click blank then click option'
Ahttps://example.com/data.csv
B"https://example.com/data.csv"
Cdata.csv
DIMPORTDATA("https://example.com/data.csv")
Attempts:
3 left
💡 Hint
Common Mistakes
Leaving out the quotes around the URL
Using a cell reference without quotes
Trying to call IMPORTDATA inside its own argument
4fill in blank
hard

Fill both blanks to import data from a CSV URL stored in cell A1.

Google Sheets
=IMPORTDATA([1][2])
Drag options to blanks, or click blank then click option'
AA1
B"
D'
Attempts:
3 left
💡 Hint
Common Mistakes
Adding quotes around the cell reference
Using single quotes instead of double quotes
Trying to concatenate quotes with the cell reference
5fill in blank
hard

Fill all three blanks to import data from a URL in cell B2 and convert it to uppercase.

Google Sheets
=ARRAYFORMULA(UPPER([1]([2][3])))
Drag options to blanks, or click blank then click option'
AIMPORTDATA
BB2
D"
Attempts:
3 left
💡 Hint
Common Mistakes
Putting quotes around the cell reference
Using a wrong function name
Not wrapping with ARRAYFORMULA for range conversion