使用ImportXML导入Google表格中的表格

时间:2019-01-11 18:34:01

标签: html google-sheets google-sheets-importxml

我正在尝试导入在此link上找到的值表

我使用了以下公式:

=importxml("https://web.archive.org/web/20180108121529/https://transportation.triboard.ca/Cancellations.aspx",
"//td [style="padding-left:10px;padding-right:10px;vertical-align:top]")")

但是我收到公式解析错误。

有人可以指出我要去哪里了吗?

1 个答案:

答案 0 :(得分:0)

此修改如何?在此修改中,https://web.archive.org/web/20180108121529/https://transportation.triboard.ca/Cancellations.aspx放在单元格“ A1”中。

修改点:

  • padding-left:10px;padding-right:10px;vertical-align:top括在单引号中。
  • 删除一个")

修改后的公式:

=IMPORTXML(A1,"//td[@style='padding-left:10px;padding-right:10px;vertical-align:top']")

另一种模式:

作为另一种模式,该公式如何?这也将检索表。但是格式与上面的格式不同。

=IMPORTXML(A1,"//tr[./td[@style='padding-left:10px;padding-right:10px;vertical-align:top']]")

如果我误解了你的问题,我深表歉意。