Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all
I have each month an excel files with this format 01_ABCD_QUALIF_AI.xlsx where first two digit are the month
for example :
01_ABCD_QUALIF_AI.xlsx
02_ABCD_QUALIF_AI.xlsx
03_ABCD_QUALIF_AI.xlsx
I'am loading all excel files from a folder using ?? in the excel files name like that "??_ABCD_QUALIF_AI.xlsx" :
FROM [lib://QUALIF_2025 /??_ABCD_QUALIF_AI.xlsx]
(ooxml, embedded labels, table is [My Sheet])
it was working perfectly but this morning I have a script error field not found :
If you load files with noconcatenate added (see https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes...) and inspect fieldnames, do you see any difference when looking at the tables in Data Model Viewer?
Another way to pinpoint could be to try to load like this;
FOR EACH vFile IN FileList('lib://QUALIF_2025/??_ABCD_QUALIF_AI.xlsx')
TRACE Loading file: $(vFile);
LOAD * FROM [$(vFile)]
(ooxml, embedded labels, table is [My Sheet]);
NEXT vFile
That would also pinpoint which file is giving you trouble
If you load files with noconcatenate added (see https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes...) and inspect fieldnames, do you see any difference when looking at the tables in Data Model Viewer?
Another way to pinpoint could be to try to load like this;
FOR EACH vFile IN FileList('lib://QUALIF_2025/??_ABCD_QUALIF_AI.xlsx')
TRACE Loading file: $(vFile);
LOAD * FROM [$(vFile)]
(ooxml, embedded labels, table is [My Sheet]);
NEXT vFile
That would also pinpoint which file is giving you trouble
Hi Lucke
Thanks a lot for your respons. It traced the error in the fourth file.
since april those export are now stored in a google space rather than a windows directory and it seems that it corrupts the output format.
regards