<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Error with load xlsx files , &amp;quot;Field not found&amp;quot; in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Error-with-load-xlsx-files-quot-Field-not-found-quot/m-p/2518459#M106094</link>
    <description>&lt;P&gt;If you load files with noconcatenate added (see &lt;A href="https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes/NoConcatenate.htm" target="_blank" rel="noopener"&gt;https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes/NoConcatenate.htm&lt;/A&gt;) and inspect fieldnames, do you see any difference when looking at the tables in Data Model Viewer?&lt;BR /&gt;&lt;BR /&gt;Another way to pinpoint could be to try to load like this;&lt;BR /&gt;&lt;BR /&gt;FOR EACH vFile IN FileList('lib://QUALIF_2025/??_ABCD_QUALIF_AI.xlsx') &lt;BR /&gt;&amp;nbsp; &amp;nbsp;TRACE Loading file: $(vFile); &lt;BR /&gt;&amp;nbsp; &amp;nbsp;LOAD * FROM [$(vFile)]&lt;BR /&gt;&amp;nbsp; &amp;nbsp;(ooxml, embedded labels, table is [My Sheet]);&lt;BR /&gt;NEXT vFile&lt;BR /&gt;&lt;BR /&gt;That would also pinpoint which file is giving you trouble&lt;/P&gt;</description>
    <pubDate>Wed, 21 May 2025 11:04:32 GMT</pubDate>
    <dc:creator>Lucke_Hallbergson</dc:creator>
    <dc:date>2025-05-21T11:04:32Z</dc:date>
    <item>
      <title>Error with load xlsx files , "Field not found"</title>
      <link>https://community.qlik.com/t5/App-Development/Error-with-load-xlsx-files-quot-Field-not-found-quot/m-p/2518449#M106089</link>
      <description>&lt;P&gt;Hi all&lt;/P&gt;
&lt;P&gt;I have each month an excel files with this format 01_ABCD_QUALIF_AI.xlsx where first two digit are the month&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for example :&lt;/P&gt;
&lt;P&gt;01_ABCD_QUALIF_AI.xlsx&lt;/P&gt;
&lt;P&gt;02_ABCD_QUALIF_AI.xlsx&lt;/P&gt;
&lt;P&gt;03_ABCD_QUALIF_AI.xlsx&lt;/P&gt;
&lt;P&gt;I'am loading all excel files from a folder using ?? in the excel files name&amp;nbsp; like that "??_ABCD_QUALIF_AI.xlsx" :&lt;/P&gt;
&lt;P&gt;FROM [lib://QUALIF_2025 /??_ABCD_QUALIF_AI.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is [My Sheet])&lt;/P&gt;
&lt;P&gt;it was working perfectly but this morning I have a script error field not found :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class=""&gt;Chargement de données démarré&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;My Sheet Lignes extraites : 10&amp;nbsp;043&lt;/DIV&gt;
&lt;DIV class=""&gt;My Sheet &amp;lt;&amp;lt; My Sheet Lignes extraites : 18&amp;nbsp;113&lt;/DIV&gt;
&lt;DIV class=""&gt;My Sheet &amp;lt;&amp;lt; My Sheet Lignes extraites : 25&amp;nbsp;323&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;L'erreur suivante s'est produite:&lt;/DIV&gt;
&lt;DIV class=""&gt;Field 'ORIGINE' not found&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;Emplacement de l'erreur:&lt;/DIV&gt;
&lt;DIV class=""&gt;LOAD DOSSIER_RELATION, TYPE_DOSSIER_RELATION, NUM_PERSONNE, TYPE_ASSURE, IDFSYS_ACTION, date(date(floor(DATE_ACTION),'DD/MM/YYYY'),'DD/MM/YYYY') as DATE_ACTION, TYPE_ACTION, ORIGINE, LIB_ORIGINE_ACTION, ETAT, right(UTILISATEUR,5) as MATRICULE, replace([NOM_LONG],'DEL OGLIO','DELLOGLIO') as NOM_LONG, Capitalize(PRENOM) as PRENOM, RESEAU, AGENCE, RESULTAT, NATURE_APPELANT, ER_DOSSIER_RELATION, DERNIERE_ER_CONNUE, ENTITE_RATTACHEMENT_FINALE FROM [lib://QUALIF_2025/??_ABCD_QUALIF_AI.xlsx] (ooxml, embedded labels, table is [My Sheet]) where ORIGINE='RE' OR ORIGINE='AE'&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;Les données n'ont pas été chargées. Corrigez l'erreur, puis recommencez l'opération de chargement.&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;i checked the labels and everythink is OK&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;I tried to change the script like that :&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;*&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;FROM [lib://QUALIF_2025/??_ABCD_QUALIF_AI.xlsx]&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is [My Sheet])&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;where ORIGINE='RE' OR ORIGINE='AE';&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;got the same error :&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;Chargement de données démarré&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;My Sheet Lignes extraites : 10&amp;nbsp;043 My Sheet &amp;lt;&amp;lt; My Sheet&lt;/DIV&gt;
&lt;DIV class=""&gt;Lignes extraites : 18&amp;nbsp;113 My Sheet &amp;lt;&amp;lt; My Sheet Lignes extraites : 25&amp;nbsp;323&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;L'erreur suivante s'est produite:&lt;/DIV&gt;
&lt;DIV class=""&gt;Field 'ORIGINE' not found&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;Emplacement de l'erreur:&lt;/DIV&gt;
&lt;DIV class=""&gt;LOAD * FROM [lib://QUALIF_2025/??_ABCD_QUALIF_AI.xlsx] (ooxml, embedded labels, table is [My Sheet]) where ORIGINE='RE' OR ORIGINE='AE'&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;Les données n'ont pas été chargées. Corrigez l'erreur, puis recommencez l'opération de chargement.&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;when I load the files one by one each script works perfectly :&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;load&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;LOAD * FROM [lib://QUALIF_2025/01_ABCD_QUALIF_AI.xlsx] (ooxml, embedded labels, table is [My Sheet]) where ORIGINE='RE' OR ORIGINE='AE'&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;it seem that qlik does not recognise labels when trying to load all files in the same script it the format is xlsx ?&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;Can someone help me ?&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;Thanks in advance&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Wed, 21 May 2025 08:52:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-with-load-xlsx-files-quot-Field-not-found-quot/m-p/2518449#M106089</guid>
      <dc:creator>brunobertels</dc:creator>
      <dc:date>2025-05-21T08:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Error with load xlsx files , "Field not found"</title>
      <link>https://community.qlik.com/t5/App-Development/Error-with-load-xlsx-files-quot-Field-not-found-quot/m-p/2518459#M106094</link>
      <description>&lt;P&gt;If you load files with noconcatenate added (see &lt;A href="https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes/NoConcatenate.htm" target="_blank" rel="noopener"&gt;https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes/NoConcatenate.htm&lt;/A&gt;) and inspect fieldnames, do you see any difference when looking at the tables in Data Model Viewer?&lt;BR /&gt;&lt;BR /&gt;Another way to pinpoint could be to try to load like this;&lt;BR /&gt;&lt;BR /&gt;FOR EACH vFile IN FileList('lib://QUALIF_2025/??_ABCD_QUALIF_AI.xlsx') &lt;BR /&gt;&amp;nbsp; &amp;nbsp;TRACE Loading file: $(vFile); &lt;BR /&gt;&amp;nbsp; &amp;nbsp;LOAD * FROM [$(vFile)]&lt;BR /&gt;&amp;nbsp; &amp;nbsp;(ooxml, embedded labels, table is [My Sheet]);&lt;BR /&gt;NEXT vFile&lt;BR /&gt;&lt;BR /&gt;That would also pinpoint which file is giving you trouble&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 11:04:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-with-load-xlsx-files-quot-Field-not-found-quot/m-p/2518459#M106094</guid>
      <dc:creator>Lucke_Hallbergson</dc:creator>
      <dc:date>2025-05-21T11:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Error with load xlsx files , "Field not found"</title>
      <link>https://community.qlik.com/t5/App-Development/Error-with-load-xlsx-files-quot-Field-not-found-quot/m-p/2518474#M106098</link>
      <description>&lt;P&gt;Hi Lucke&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot for your respons. It traced the error in the fourth file.&lt;/P&gt;&lt;P&gt;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.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="brunobertels_0-1747828785696.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/180639i60400F94FDE6696D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="brunobertels_0-1747828785696.png" alt="brunobertels_0-1747828785696.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 12:03:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-with-load-xlsx-files-quot-Field-not-found-quot/m-p/2518474#M106098</guid>
      <dc:creator>brunobertels</dc:creator>
      <dc:date>2025-05-21T12:03:11Z</dc:date>
    </item>
  </channel>
</rss>

