Google-sheets – IMPORTHTML – unable to import table

google sheetsimporthtml

I try to import on my sheets a table o this url
http://travian.kirilloid.ru/build.php#b=18&mb=1&s=1.45

I use this sintaxis:

=IMPORTHTML("http://travian.kirilloid.ru/build.php#b=18&mb=1&s=1.45";"table";1)

What is the error?

Best Answer

IMPORTHTML is only able to import data from a well formed web page that include on its source code the table to be imported a HTML tags (table, thead, tbody, tr, th, td) but the table is populate by using JavaScript.

First you should do a further analysis of the page. To do this will need to learn about HTML, JavaScript and CSS.

Related