仅将IMAGE函数添加到通过IMPORTXML收集的一列数据中

时间:2019-11-01 02:47:47

标签: web-scraping google-sheets google-sheets-formula array-formulas google-sheets-importxml

我从单个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)))))

enter image description here

我想知道是否有必要不必使用多个调用importxml并仅在第一列中添加IMAGE函数,所以我不必将其单独我目前有。

链接到电子表格: https://docs.google.com/spreadsheets/d/10_G3QjcLcE9dYz_0m8PjPxHDAAaKL7BGEehTfmprYTQ/edit?usp=sharing

1 个答案:

答案 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)})

0