Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Script

hi All,

Actaully i have  6 months different excel sheets , I wanted to write a script where upon i can laod all the excel sheets at once .

iam attaching here my problem , i hope u will understand it ,

Thanks in Advance.

1 Solution

Accepted Solutions
its_anandrjs
Champion III
Champion III

Try to write like this way i create single variable to store the Path of the files in the variable and from this folder load all *.csv files.

LET Path = 'D:\POC Disney\Trxn\Transaction_Files-2014-12-10\Transaction Files\';

Load *
From

[Path\*.csv];

Regards

Anand

View solution in original post

3 Replies
its_anandrjs
Champion III
Champion III

Try to write like this way i create single variable to store the Path of the files in the variable and from this folder load all *.csv files.

LET Path = 'D:\POC Disney\Trxn\Transaction_Files-2014-12-10\Transaction Files\';

Load *
From

[Path\*.csv];

Regards

Anand

Not applicable
Author

Thanks brother u always rock

Not applicable
Author

Hi,

Try this

Load * From

[D:\POC Disney\Trxn\Transaction_Files-2014-12-10\Transaction Files\*.csv];

Regards

Ayush