如何从(CSV文件1)中的可下载CSV超链接将行和列导出到(CSV文件2)

时间:2017-10-16 15:32:05

标签: javascript excel csv excel-formula vlookup

3个csv文件。

文件1:

enter image description here

文件2:

enter image description here

文件3(可通过单击文件1中的链接下载的文件):enter image description here

我的问题是我如何制定excel,以便它自动抓取文件3中的行和列,可以使用文件1中的链接下载,并在文件2中的单个单元格中的一行中导出行和列

谢谢!

1 个答案:

答案 0 :(得分:0)

我的第一个想法是在Excel中预处理VBA中的文件3以将列连接成字符串。即:

temp_row = 2
temp_string = ""
while range("A" & temp_row) <> ""
   temp_string = temp_string & concatenate(Range("A" & temp_row), Range("B" & temp_row), Range("C" & temp_row))
   temp_row = temp_row + 1
wend