2017-10-16 20 views
0

3 csvファイルから行と列を(CSVファイル2)にエクスポートする方法。(CSVファイル1)のダウンロード可能なCSVハイパーリンク

ファイル1:

enter image description here

ファイル2:

enter image description here

ファイル3(ファイル1内のリンクをクリックしてダウンロードできるファイル):enter image description here

私の質問は、それが自動的にFiの行と列を取得するようにExcelを公式化するかどうかですファイル3のリンクを使用してダウンロードし、ファイル2の1つのセルに1行の行と列をエクスポートすることができます。

ありがとう!

答えて

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 
関連する問題