Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
john9inno
Creator
Creator

Extraction all file in one folder

Hi all,

the problem i have is very annoying for so long.

I have a group of people feed me same type of report every week.

thoes are saved in one folder with different name.

Have asked to save it same name but never worked.

it is like

file 1 - A2.TXT

File 2 - a2.TXT

File 3 - A_2.TXT and so on.

is it possible to extract data from all file in one location automatically?

any comment will be appreciated.

thanks.

1 Solution

Accepted Solutions
PrashantSangle

Hi,

Try like

Temp:

load *

from filepath/*.txt

store Temp into filePAth/TempTxt.qvd;

drop table Temp;

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

View solution in original post

2 Replies
PrashantSangle

Hi,

Try like

Temp:

load *

from filepath/*.txt

store Temp into filePAth/TempTxt.qvd;

drop table Temp;

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
john9inno
Creator
Creator
Author

thanks so much!