Japan

Announcements
See why Qlik was named a Leader in the 2024 Gartner® Magic Quadrant™ for Data Integration Tools for the ninth year in a row: Get the report

Who Me Too'd this solution

hka
Employee
Employee

フォルダ名にルールがあるのであればfor文を使う形で対応できると思います。

for i = 1 to 2

 Load

 FROM [lib://a /Downloads/$(i)/*.csv]
 (txt, codepage is 932, embedded labels, delimiter is ',', msq);

next i;

今回は$(i)でフォルダ名を1、2というような形で定義していますが

フォルダリストを取り込んでそのリストを使ってfor文でLoadすることも可能です。

 

View solution in original post

Who Me Too'd this solution