<?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: How to uniformize Headers in mass Load, determined by a list in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109127#M90580</link>
    <description>&lt;P&gt;The renaming-logic could be also placed before the load by using appropriate ALIAS statements.&lt;/P&gt;</description>
    <pubDate>Wed, 23 Aug 2023 17:08:37 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2023-08-23T17:08:37Z</dc:date>
    <item>
      <title>How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109092#M90573</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;Please check my xls file :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to concatenate several tables determining the header depending the file name and the theorical header Name&lt;/P&gt;
&lt;P&gt;Can you help me on this ?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 14:58:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109092#M90573</guid>
      <dc:creator>hamiltonverkrusse</dc:creator>
      <dc:date>2023-08-23T14:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109105#M90576</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;Check out a script command called RENAME FIELDS. You can load all of your tables and then rename all of the fields at once, using a mapping table, similar to your Excel table.&lt;/P&gt;
&lt;P&gt;To learn more advanced development techniques, check out the agenda of the &lt;A href="https://masterssummit.com" target="_blank"&gt;Masters Summit for Qlik&lt;/A&gt; - coming soon to Orlando and to Dublin!&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 15:30:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109105#M90576</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2023-08-23T15:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109110#M90577</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Thanks for the answer but :&lt;/P&gt;
&lt;P&gt;Limitation:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Two differently named fields cannot be renamed to having the same name. The script will run without errors, but the second field will not be renamed.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 16:00:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109110#M90577</guid>
      <dc:creator>hamiltonverkrusse</dc:creator>
      <dc:date>2023-08-23T16:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109127#M90580</link>
      <description>&lt;P&gt;The renaming-logic could be also placed before the load by using appropriate ALIAS statements.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 17:08:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109127#M90580</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-08-23T17:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109344#M90584</link>
      <description>&lt;P&gt;Here is the code i'm using :&lt;/P&gt;
&lt;P&gt;Final:&lt;BR /&gt;load 1 as Dummy autogenerate 1;&lt;/P&gt;
&lt;P&gt;For i = 0 to NoOfRows('FileList')-1&lt;BR /&gt;LET ConnectLoop=Peek('PathName', '$(i)', 'FileList');&lt;BR /&gt;&lt;BR /&gt;FieldNamesMap:&lt;BR /&gt;MAPPING LOAD WF_Key,&lt;BR /&gt;WF_StringValue&amp;amp;WF_OpérateurLogique&lt;BR /&gt;resident wf&lt;BR /&gt;//where WF_LookupFileName = '$(vFileName)'&lt;BR /&gt;;&lt;BR /&gt;RENAME FIELDS USING FieldNamesMap;&lt;BR /&gt;&lt;BR /&gt;concatenate&lt;BR /&gt;&lt;BR /&gt;Final:&lt;BR /&gt;load *&lt;BR /&gt;,FileName() as LookupFileName&lt;BR /&gt;from $(ConnectLoop) (txt, utf8, embedded labels, delimiter is ',', msq);&lt;/P&gt;
&lt;P&gt;let vFileName = FileName();&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Next i&lt;/P&gt;
&lt;P&gt;//drop table FileList;&lt;BR /&gt;NoConcatenate&lt;/P&gt;
&lt;P&gt;Lookup_final:&lt;/P&gt;
&lt;P&gt;Load *&lt;BR /&gt;,autonumber(RowNo(),[LookupFileName]) as RowNum&lt;BR /&gt;Resident Final where Dummy &amp;lt;&amp;gt;'1';&lt;/P&gt;
&lt;P&gt;drop table Final;&lt;/P&gt;
&lt;P&gt;drop field Dummy;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, I'm looping to load my files with * and I can not rename my fileds with alias.&lt;/P&gt;
&lt;P&gt;My Goal is after each load to rename header to uniformize.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 08:53:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109344#M90584</guid>
      <dc:creator>hamiltonverkrusse</dc:creator>
      <dc:date>2023-08-24T08:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109351#M90585</link>
      <description>&lt;P&gt;I meant this statement:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptRegularStatements/Alias.htm" target="_blank"&gt;Alias | Qlik Cloud Help&lt;/A&gt;&amp;nbsp;which you defines before you call the load.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 09:24:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109351#M90585</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-08-24T09:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109354#M90586</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Thanks for your help.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example :&amp;nbsp;&lt;SPAN&gt;Alias ID_N as NameID;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;So you mean by this statement, I can force Qlik to rename each field ID_N by NameID ?&lt;/P&gt;
&lt;P&gt;If Yes, do you know if I can load it by xls file ?&lt;/P&gt;
&lt;P&gt;Thanks again&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 09:32:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109354#M90586</guid>
      <dc:creator>hamiltonverkrusse</dc:creator>
      <dc:date>2023-08-24T09:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109359#M90587</link>
      <description>&lt;P&gt;Maybe with something like:&lt;/P&gt;
&lt;P&gt;t: load concat('[' &amp;amp; old &amp;amp; ']' ' as ' &amp;amp; '[' &amp;amp; new &amp;amp; ']', ', ') as AliasString from Source;&lt;/P&gt;
&lt;P&gt;let v = fieldvalue('AliasString', 1);&lt;/P&gt;
&lt;P&gt;Trace $(v);&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ALIAS $(v);&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 09:42:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2109359#M90587</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-08-24T09:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2110886#M90739</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Thanks, I'm trying to use this solution. I'm facing one more issue to finalize. For those 2 lines to create the Alias :&lt;/P&gt;
&lt;P&gt;Depending on if i'm loading file "3" or&amp;nbsp; file "4", my new header must be different, so I need to prefix my "load *" headers with the file i'm loading, then i'll be able to use Alias "3PU" as "ProcurementUnit.UniqueName" and&amp;nbsp;"4PU" as "ProcurementUnit.Parent.UniqueName"&lt;/P&gt;
&lt;P&gt;Do you have any Idea on how to do that ?&lt;/P&gt;
&lt;TABLE width="1049"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="138"&gt;4&lt;/TD&gt;
&lt;TD width="216"&gt;PU&lt;/TD&gt;
&lt;TD width="526"&gt;ProcurementUnit.UniqueName&lt;/TD&gt;
&lt;TD width="169"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;3&lt;/TD&gt;
&lt;TD&gt;PU&lt;/TD&gt;
&lt;TD&gt;ProcurementUnit.Parent.UniqueName&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Tue, 29 Aug 2023 13:40:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2110886#M90739</guid>
      <dc:creator>hamiltonverkrusse</dc:creator>
      <dc:date>2023-08-29T13:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2110920#M90742</link>
      <description>&lt;P&gt;If multiple files needs to be loaded differently you will need to switch between different load-statements. This means you need to branch between multiple versions or you need to adjust one on the fly. In each case this couldn't be done with the classical wildcard-load which is an implicit loop else you need to define it explicitly - which is quite simple and should be IMO the standard-approach. It means something like:&lt;/P&gt;
&lt;P&gt;for each file in filelist('path/file*.*')&lt;BR /&gt;&amp;nbsp; &amp;nbsp;if keepchar(subfield('$(file)', '\', -1), '0123456789') = 'MyCondition' then&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; let vLoad = 'MyStatement1';&lt;BR /&gt;&amp;nbsp; &amp;nbsp;else&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; let vLoad = 'MyStatement2';&lt;BR /&gt;&amp;nbsp; &amp;nbsp;end if&lt;BR /&gt;&amp;nbsp; &amp;nbsp;t: load $(vLoad) from $(file) (fileformat);&lt;BR /&gt;next&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 14:30:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2110920#M90742</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-08-29T14:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2110930#M90743</link>
      <description>&lt;P&gt;Thanks agin for your help, but not sure to understand your point. Here is an example of what I want to do :&lt;/P&gt;
&lt;TABLE width="738"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Table1&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;PU&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;CC&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;Group&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;User&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;File&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;15&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;152&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;G1&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;Table1&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;12&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;152&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;Adupont&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;Table1&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Table2&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;PU&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;CostCenter&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;Group&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;User&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;File&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;22&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;152&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;G3&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;Table2&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;11&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;152&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;Alefebvre&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;Table2&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Alias Table&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;TableName&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;Name&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;UniqueName&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Table1&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;PU&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;Parent.PU.UniqueName&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Table1&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;CC&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;CC.UniqueName&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Table1&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;Group&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;Group&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Table1&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;User&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;User&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Table2&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;PU&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;PU.UniqueName&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Table2&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;CostCenter&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;CC.UniqueName&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Table2&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;Group&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;Group&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Table2&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;User&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;User&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Table3&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;Montant&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;Total.Amount&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Table3&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;OI&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;OI.UniqueName&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Table3&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;List&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;ApproverList&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Result&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;Parent.PU.UniqueName&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;PU.UniqueName&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;CC.UniqueName&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;Group&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;User&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;File&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;22&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;152&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;G3&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;Table2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;11&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;152&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;Alefebvre&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;Table2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;15&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;152&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;G1&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;Table1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="169.988px" height="24px"&gt;12&lt;/TD&gt;
&lt;TD width="121.988px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="169.988px" height="24px"&gt;152&lt;/TD&gt;
&lt;TD width="110.588px" height="24px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="78.9375px" height="24px"&gt;Adupont&lt;/TD&gt;
&lt;TD width="85.7125px" height="24px"&gt;Table1&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Tue, 29 Aug 2023 14:44:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2110930#M90743</guid>
      <dc:creator>hamiltonverkrusse</dc:creator>
      <dc:date>2023-08-29T14:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2110951#M90746</link>
      <description>&lt;P&gt;To conclude: you are starting with a pre-load containing file/table/field-information which are read and prepared to define ALIAS strings and maybe also other load-information, like field-lists, where-clauses, what ever.&lt;/P&gt;
&lt;P&gt;Some of them like the ALIAS may be applied before the real file-loading is performed but if any of these information isn't globally true else depending on current file/table you will need to detect which file/table is the current one and then providing the specialized information. And for such a task you will need any kind of loop and within it measures to detect/extract which is the current one and then providing the right information.&lt;/P&gt;
&lt;P&gt;I'm not sure if I understand what's exactly the problem. If it's related to the ALIAS which might be differentiated in some way you may need to apply it multiple times. I think it's rarely used and I do not remember of having seen a way to remove/disable/revert the statement directly but I think it could be overwritten with new definitions - and in such case you may need to use a filelist-loop and doing the needed work within it.&lt;/P&gt;
&lt;P&gt;Beside this I suggest to consider to simplify the approach by loading a file and applying the wanted renaming and then storing it as qvd and dropping the file and going then to the next file. Afterwards all the qvd's could be loaded again.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 15:12:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2110951#M90746</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-08-29T15:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2110969#M90747</link>
      <description>&lt;P&gt;To sumup : I want to apply a specific ALIAS depending on the file I'm loading.&lt;/P&gt;
&lt;P&gt;In my example, for Table1 we must have ALIAS "PU" as "Parent.PU.UniqueName" and&amp;nbsp;for Table2 we must have ALIAS "PU" as "PU.UniqueName". So, my idea was to prefix all "old headers" with the filename and then to concatenate my paramter fields to use :&amp;nbsp; &amp;nbsp;ALIAS "Table1PU" as "Parent.PU.UniqueName" and&amp;nbsp;ALIAS "Table2PU" as "PU.UniqueName".&lt;/P&gt;
&lt;P&gt;Do you think there is a simplier way ?&lt;/P&gt;
&lt;P&gt;Thanks again ! really appreciate your help&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 15:28:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2110969#M90747</guid>
      <dc:creator>hamiltonverkrusse</dc:creator>
      <dc:date>2023-08-29T15:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2110992#M90748</link>
      <description>&lt;P&gt;I think the above mentioned approach of loading each single file + applying the transformation and storing it + dropping the table and then going to the next file is the most simple approach. You wouldn't need the ALIAS else you could apply a renaming per mapping - and you would have all files as qvd's.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 15:56:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2110992#M90748</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-08-29T15:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2111172#M90768</link>
      <description>&lt;P&gt;Ok, will try, what do you think is the simpliest way ?&lt;/P&gt;
&lt;P&gt;I have a folder in which I want to load all files (never know wich ones) and for all files, I want to load all fields (nerver know which ones) and rename its&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 06:26:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2111172#M90768</guid>
      <dc:creator>hamiltonverkrusse</dc:creator>
      <dc:date>2023-08-30T06:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to uniformize Headers in mass Load, determined by a list</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2111207#M90774</link>
      <description>&lt;P&gt;Like always there is no generally simplest approach else it will depend on various factors which way is more suitable as the others. Further there must be always some information/rules/condition which kind of data exists and what should happens with them - maybe not complete ones at this stage but for the following stages. To not considering the later requirements is surely possible but it may lead to more efforts and complexity within the following layers and the overall efforts might be not optimal.&lt;/P&gt;
&lt;P&gt;Assuming that really no valid information exists about these files I would just load them + collecting some meta-information and storing them as qvd-files without any transformation - means also no renaming. For this I would apply a filelist-loop like hinted above and loading all fields with a wildcard. Further I would add path + filename information extracted from the iterator-variable or per functions like filename() respectively if there are further information encoded like YYYYMM periods or any kind of categories/countries or whatever and then also adding the filetime() and filesize() - and using those information to decode the qvd-filenames.&lt;/P&gt;
&lt;P&gt;Afterwards you would be able to extract many of these information without loading the file again. Of course accessing the encoded information from the filename is simple but qvd's allow also a read of various meta-information like the qvdnooffields() or qvdnoofrecords() without a load.&lt;/P&gt;
&lt;P&gt;Of course more is possible if you creates at ones a meta-table within the loop directly after the file-load, like:&lt;/P&gt;
&lt;P&gt;Meta: load '$(file)' as File, now() as LoadTime, .... autogenerate 1;&lt;/P&gt;
&lt;P&gt;which is later also saved as qvd. Each interesting kind of information could be saved there like a list of the fields, formatting and NULL information and ... Further these information might be used to categorize the files in different types which you also may encode within the qvd-name.&lt;/P&gt;
&lt;P&gt;In the next layer you could then loop through such meta-table and matching those information with a certain set of rules to perform the needed transformation.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 07:36:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-uniformize-Headers-in-mass-Load-determined-by-a-list/m-p/2111207#M90774</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-08-30T07:36:46Z</dc:date>
    </item>
  </channel>
</rss>

