我正在尝试导入在此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]")")
但是我收到公式解析错误。
有人可以指出我要去哪里了吗?
答案 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']]")
如果我误解了你的问题,我深表歉意。