Complete the formula to import the first table from a webpage URL.
=IMPORTHTML([1], "table", 1)
The first argument of IMPORTHTML is the URL as a text string. Here, you must put the webpage URL inside quotes.
Complete the formula to specify that you want to import a table from the webpage.
=IMPORTHTML("https://example.com", [1], 1)
The second argument must be "table" to import tables. "list" is for lists, and other values are invalid here.
Fix the error in the formula to import the second table from a webpage.
=IMPORTHTML("https://example.com", "table", [1])
The third argument is the index of the table to import, starting at 1. To import the second table, use 2 without quotes.
Fill both blanks to import the first list from a webpage URL.
=IMPORTHTML([1], [2], 1)
The first blank is the URL in quotes. The second blank must be "list" to import lists instead of tables.
Fill all three blanks to import the third table from a webpage URL.
=IMPORTHTML([1], [2], [3])
Use the URL as the first argument, "table" as the second to specify tables, and 3 as the third to get the third table.