Google 工作表上的 IMPORTXML 错误

IMPORTXML Error on Google Sheets

我想将以下 table 导入到 Google 表格中并安排它每周刷新一次。我刚刚开始弄乱 XPath,并且能够发现我需要在 IMPORTXML 公式中包含 Relative XPath 才能工作。我使用 'XPath Helper' Chrome 插件找到相同的,但我收到 "Could not fetch URL" 错误。

=IMPORTXML("www.bloomberg.com/billionaires/", "/html[@class='no-js']/body/div[@class='dvz-content'][1]/section[@class='container-width']/div[@class='table-chart']/div[@class='table-row'][1]/div[@class='table-cell t-name']/a")

感谢任何帮助我开始的帮助?

谢谢!

两件事 - 一是 URL 你的请求缺少 http:// 协议,这是 importxml 工作所必需的 - 第二这是一个有效的 xpath(你正在使用不工作),这个更简单 -

这是完整的公式:

=IMPORTXML("http://www.bloomberg.com/billionaires/", "//*[@class='table-row']")