Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

import data from multiple excel files in a folder

Hi All,

want to pop a question, if Qlikview has a function to import data from multiple excel files in a particular folder. or we have to take a route of declaring the 10 different files name and then importing it

path names:

\\Nyk\Prime\Product Management\Quant PB\EMEA\FillReports\AMS\20170331

files names:

AMS_Fills_Summary_AA_EU_1_31-03-2017

AMS_Fills_Summary_CA_EU_1_31-03-2017

so on

.

.

.

.

.

thanks in advance

1 Solution

Accepted Solutions
jrepucci15
Creator
Creator

This works for me:

The * is a wild card and this statement loads in all of the spreadsheets in that path.

FROM $(vExternalSourcePath)\ADP - Hours and Wages by Project\*.xls

View solution in original post

7 Replies
sunny_talwar

May be like this:

LOAD ....

FROM \\Nyk\Prime\Product Management\Quant PB\EMEA\FillReports\AMS\20170331\AMS_Fills_Summary_*_EU_1_31-03-2017.xlsx

..... ;

Not applicable
Author

in order to make AMS and 20170331 flexible, I wrote the below for loop but not working:

for i = 0 to vcount

Let vdate = peek('tddate',i,'datesinfo');
LET vfillxcelFileName = '\\intranet.barcapint.com\dfs-amer\Group\Nyk\Prime\Product Management\Quant PB\EMEA\FillReports\'&vfoldername&'\'&vdate&'\*.csv';




next

please advise

jrepucci15
Creator
Creator

This works for me:

The * is a wild card and this statement loads in all of the spreadsheets in that path.

FROM $(vExternalSourcePath)\ADP - Hours and Wages by Project\*.xls

sunny_talwar

What is the error you are getting? You have only provided partially script... what is vcount, what is tddate? you use just i in the Peek() function, may be use $(i).... There could be any number of things going on and it would be difficult to comment by just looking at this

Miguel_Angel_Baeyens

If that does not work it is because some of the variables don't get the values or that the file corresponding to those values do not exist. Use a TRACE variable in the script so you can see how they are loaded.

Also, while playing with dates, the "vdate" variable is getting an unexpected value, like "42836", so you will need to modify the LET statement with the Date() function to provide the same format you have in your file names. Indeed, your folder name, according to the example on your original post has the format YYYYMMDD but the file has the format DD-MM-YYYY

Not applicable
Author

hi all,

based on your suggestions: below code is now working:

NoConcatenate
folderscount:
load
count(folders) as foldercount
FROM
$(filename)
(
ooxml, embedded labels, table is [Static Data]);

Let vfoldercount = peek('foldercount',0,'folderscount');
drop table folderscount;

dumpingdata:
load * from fillsdata.qvd (qvd) where DateTimeStamp=1;
store dumpingdata into fillsdata.qvd (qvd);
drop table dumpingdata;
 
let f = 0;
for f = 0 to vfoldercount-1

NoConcatenate
folders:
load
folders
FROM
$(filename)
(
ooxml, embedded labels, table is [Static Data]);
 
Let vfoldername = peek('folders',f,'folders');
drop table folders;
 
///////////////////////date count and names ///////////////////////////////////////////////
NoConcatenate
datescountinfo:
load distinct TRADE_DATE as counting resident bodata;
 
NoConcatenate
datescountinfo1:
load distinct counting resident datescountinfo;
drop table datescountinfo;
 
NoConcatenate
datescountinfo2:
load count(counting) as counting1 resident datescountinfo1;
drop table datescountinfo1;
Let vcount = peek('counting1',0,'datescountinfo2');
drop table datescountinfo2;
 
let i = 0;
for i = 0 to vcount-1
 
NoConcatenate
datesinfo:
load distinct TRADE_DATE resident bodata;
 
NoConcatenate
datesinfo1:
load distinct Date(TRADE_DATE,'YYYYMMDD') as tddate resident datesinfo;
drop table datesinfo;
 
Let vdate = peek('tddate',i,'datesinfo1');
drop table datesinfo1;
  fillsdata:
load * from $(vfillxcelFileName)$(vfoldername)\$(vdate)\*.csv;
 
Concatenate
load * from fillsdata.qvd (qvd);
store fillsdata into fillsdata.qvd (qvd);
drop table fillsdata;
 
next
 
next
 
endif
  fillsdata:
 
load * from fillsdata.qvd (qvd);

now i am looking to ignore some files from below path in order to reduce run time:

fillsdata:

load * from $(vfillxcelFileName)$(vfoldername)\$(vdate)\*.csv;

any suggestions

thanks in advance

Miguel_Angel_Baeyens

Use the DoDir() function to reload one file at a time. It will be slower but allows you to control each file that is loaded:

count files in folder