我从单个IMPORTXML
导入数据,并将其分为两列,如下所示:
=ArrayFormula(IFERROR(HLOOKUP(1,{1;IMPORTXML(A1,"
//table[@class='table squad sortable']//td[@class='photo']/a/img/@src |
//table[@class='table squad sortable']//td[@class='name large-link']/a/@href")},
(ROW(A:A)+1)*2-TRANSPOSE(sort(ROW($A$1:$A$2)+0,1,0)))))
我想知道是否有必要不必使用多个调用importxml并仅在第一列中添加IMAGE
函数,所以我不必将其单独我目前有。
链接到电子表格: https://docs.google.com/spreadsheets/d/10_G3QjcLcE9dYz_0m8PjPxHDAAaKL7BGEehTfmprYTQ/edit?usp=sharing
答案 0 :(得分:0)
最好的一个公式是:
=ARRAYFORMULA({IFERROR(IMAGE(IMPORTXML(A1,
"//table[@class='table squad sortable']//td[@class='photo']/a/img/@src"))),
QUERY(IFERROR(HLOOKUP(1, {1; IMPORTXML(A1,
"//table[@class='table squad sortable']//td[@class='photo']/a/img/@src | //table[@class='table squad sortable']//td[@class='name large-link']/a/@href")},
(ROW(A:A)+1)*2-TRANSPOSE(SORT(ROW($A$1:$A$2)+0, 1, 0)))), "where Col1 !=''", 0)})