googlesheets 无法导入可扩展 table
googlesheets can't import expandable table
我无法在我的 google 工作表上导入此网站的第二个 table:https://www.wsj.com/market-data/quotes/AMZN/financials/annual/balance-sheet
(点击 "Liabilities & Shareholders' Equity" 时显示的 table)。
这是我的代码:
=IMPORTHTML("https://www.wsj.com/market-data/quotes/AMZN/financials/annual/balance-sheet", "table",2)
你要的table不是本页第2个table,是第59个table.
在此处查看 IMPORTHTML
函数的文档:https://support.google.com/docs/answer/3093339?hl=en
最后一个参数是您想要的页面上的 table。当我检查页面的 HTML 时,我发现 115 <table>
元素构成了页面上的 HTML。
因此,您的代码应如下所示:
=IMPORTHTML("https://www.wsj.com/market-data/quotes/AMZN/financials/annual/balance-sheet", "table",59)
我刚刚在 Google 表格中对此进行了测试,它确实导入了数据。
我无法在我的 google 工作表上导入此网站的第二个 table:https://www.wsj.com/market-data/quotes/AMZN/financials/annual/balance-sheet
(点击 "Liabilities & Shareholders' Equity" 时显示的 table)。
这是我的代码:
=IMPORTHTML("https://www.wsj.com/market-data/quotes/AMZN/financials/annual/balance-sheet", "table",2)
你要的table不是本页第2个table,是第59个table.
在此处查看 IMPORTHTML
函数的文档:https://support.google.com/docs/answer/3093339?hl=en
最后一个参数是您想要的页面上的 table。当我检查页面的 HTML 时,我发现 115 <table>
元素构成了页面上的 HTML。
因此,您的代码应如下所示:
=IMPORTHTML("https://www.wsj.com/market-data/quotes/AMZN/financials/annual/balance-sheet", "table",59)
我刚刚在 Google 表格中对此进行了测试,它确实导入了数据。