Google-sheets – Trying to use Google Sheets importHTML() to import a table. But no content appears

google sheetsgoogle-appshtmlimporthtml

I'm attempting to load the following website into Google Sheets:

https://www.lasvegasadvisor.com/vegas-lines/?sport=ncaafb&period=0

Can anyone help provide a formula that would work in google docs to get this done? This website is updated at random times throughout the day so I want to use google docs to help track that.

I've included two images below of what I currently am doing. Any help/insight is greatly appreciated!!!

Thanks,

'NCAAF Data

NCAAF Formulastrong text

Best Answer

IMPORTHTML doesn't works because the page you are trying to scrape use JavaScript to add the data tables to the page. Google Sheets doesn't have built-in functions that are able to scrape data that is isn't included on the source code.

Related