Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone..
I am having a issue in Loading multiple excel and sheets at a same time in qlik Sense..
2 Problems i have while loading Excel sheets some time there is a mismatch in the sheet name and also column name even through i have to load the particular sheet but its failing to load..
What will be the solution to load the data even we have these issue..
Regards
Nizam
for each vFile in FileList('..\Data\*.csv')
let vQVD = replace(vFile, '.csv', '.qvd');
if alt(FileSize('$(vQVD)'), 0) = 0 then
NextFile:
LOAD
*
FROM $(vFile)
(txt, codepage is 1252, no labels, delimiter is ',', msq)
;
STORE NextFile INTO $(vQVD) (qvd);
DROP TABLE NextFile;
end if
next
Data:
LOAD
*
FROM ..\Data\*.qvd (qvd)
;