使用importhtml公式时出现“#N / A”错误

时间:2019-04-08 10:43:17

标签: google-sheets

我试图从hket网站导入表以对自己的数据进行一些分析。

当我使用=importxml("http://www1.hket.com/finance/chart/industry-index.do","//*[@id='eti-finance-chart-table']")(代表网站链接)时,出现“ N / A”错误。

importxml在gurufocus网站上正常工作。

可以帮帮我吗?我一直无法弄清楚到底是什么问题。

据我了解,hket的表未使用HTML或XML格式。如果是这样,我可以在Google表格中使用一个脚本来让我从hket中提取数据吗?

1 个答案:

答案 0 :(得分:0)

如果运行以下公式,您将看到罪魁祸首:

#! /bin/bash
dir1=...
dir2=...
dummy=...    

for file in "$dir1"/* ; do
    target=$dir2/_file_${file##*/}.png
    [[ -f $target ]] || cp "$dummy" "$target"
done

0