Skip to content
Advertisement

Tag: google-sheets-formula

Unable to import data from webpage to google sheets

I know how to use the importhtml function of google spreadsheets but there is one webpage which refuses to load the table. Link given below. https://www.dream11.com/cricket/fantasy-scorecard/1027/14047 I even tried the below code in google developer console to check the table index but this also did not solve var i = 1; [].forEach.call(document.getElementsByTagName(“table”), function(x) { console.log(i++, x); }); Please help Answer

Advertisement