Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello ,
i want to extract all name files , i use this script
Set sPathResources = 'C:\pfe\qlikview\qvd\DONNEES_RECAPFEV2016';
for each File in FileList('$(sPathResources)\*.qvd')
files:
LOAD *,
FileName() as filename
FROM [$(File)];
when i execute this script , i have only the first name files in folder
hello liron
i tried this script
Set sPathResources = 'C:\pfe\qlikview\qvd\DONNEES_RECAPFEV2016\*';
Load
FileName() as Filepath
From $(sPathResources);
and it s working
Set sPathResources = 'C:\pfe\qlikview\qvd\DONNEES_RECAPFEV2016';
for each File in FileList('$(sPathResources)\*.qvd')
files:
LOAD *,
FileName() as filename
FROM [$(File)];
Next
hi
if this is all your script
you miss a "next"
in the end of the script
hello liron
i tried this script
Set sPathResources = 'C:\pfe\qlikview\qvd\DONNEES_RECAPFEV2016\*';
Load
FileName() as Filepath
From $(sPathResources);
and it s working