0
<xml>
    <category date="5/21/2012">
        <item>14</item>
    </category>
</xml>

在单元格 A1 中,我具有以下功能:

=ImportXML("http://www.site.com/file.xml", "//@date")

它成功加载了名称“日期”的所有属性值。

现在在 B1 中,我想加载在 A1 中具有日期的“项目”。我知道以下内容是错误的,但我知道我要去哪里:

=ImportXML("http://www.site.com/file.xml", "//@date["&A&ROW()&"]/item")

先感谢您。

4

1 回答 1

0

解决方案:

=ImportXML("http://www.site.com/file.xml", "//category[@date='"&INDIRECT("A"&ROW())&"']/item")
于 2013-04-08T22:22:42.110 回答