Challenge - 5 Problems
IMPORTHTML Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What does this IMPORTHTML formula return?
Given the formula
=IMPORTHTML("https://en.wikipedia.org/wiki/List_of_countries_by_population_(United_Nations)", "table", 1) in cell A1, what will be the output in the first row of the imported table?Attempts:
2 left
💡 Hint
IMPORTHTML imports the entire table including headers, not just data rows.
✗ Incorrect
The IMPORTHTML function imports the entire HTML table specified by the index. The first row is usually the header row with column titles.
❓ Function Choice
intermediate2:00remaining
Which formula correctly imports the second table from a webpage?
You want to import the second table from
https://example.com/data. Which formula will do this correctly?Attempts:
2 left
💡 Hint
The third argument is the table index starting at 1.
✗ Incorrect
IMPORTHTML with type 'table' and index 2 imports the second table on the page. 'list' is for lists, IMPORTDATA is for CSV/TSV files.
🎯 Scenario
advanced2:00remaining
You want to import a table but get a #N/A error. What is the likely cause?
You used
=IMPORTHTML("https://example.com/page", "table", 1) but the cell shows #N/A. What is the most likely reason?Attempts:
2 left
💡 Hint
Check if the webpage actually contains tables and the index matches.
✗ Incorrect
IMPORTHTML returns #N/A if the specified table index does not exist or the page has no tables. Syntax errors cause different errors.
📊 Formula Result
advanced2:00remaining
What happens if you use IMPORTHTML with a list type on a page with no lists?
Formula:
What will be the result?
=IMPORTHTML("https://en.wikipedia.org/wiki/List_of_countries_by_population_(United_Nations)", "list", 1)What will be the result?
Attempts:
2 left
💡 Hint
IMPORTHTML requires the specified element type to exist on the page.
✗ Incorrect
If the page has no lists, IMPORTHTML returns #N/A because it cannot find the requested element.
❓ data_analysis
expert2:00remaining
How many rows will be imported by this formula?
You use
=IMPORTHTML("https://en.wikipedia.org/wiki/List_of_countries_by_population_(United_Nations)", "table", 1). The first table has 235 rows including the header. How many rows will appear in your sheet?Attempts:
2 left
💡 Hint
IMPORTHTML imports the entire table as is, including headers.
✗ Incorrect
IMPORTHTML imports the full table including the header row, so all 235 rows appear.