<?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: Concatenate table and left join in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Concatenate-table-and-left-join/m-p/1883920#M72791</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;table1:
LOAD A
Concatenate
LOAD B

tabTemp:
LOAD C
Concatenate
LOAD D

Left Join (table1)
LOAD * Resident tabTemp;

Drop Table tabTemp;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;hope this helps&lt;/P&gt;
&lt;P&gt;Marco&lt;/P&gt;</description>
    <pubDate>Fri, 21 Jan 2022 14:13:29 GMT</pubDate>
    <dc:creator>MarcoWedel</dc:creator>
    <dc:date>2022-01-21T14:13:29Z</dc:date>
    <item>
      <title>Concatenate table and left join</title>
      <link>https://community.qlik.com/t5/App-Development/Concatenate-table-and-left-join/m-p/1883689#M72763</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I'm struggling with creation one big table. I have 4 tables (A, B, C and D). Tables A and B mast be concatenaded. Tables C and D- also must be concatenated and then i would like left join bolth concatenaded tables. example: (A concatenate B) Left Join (C Concatenate D).&lt;/P&gt;
&lt;P&gt;Any ideas? All help in greatly appreciated.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;A:&lt;/STRONG&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;ID,&lt;BR /&gt;Value,&lt;BR /&gt;Item&lt;BR /&gt;FROM [lib://Testno:DataFiles/Uvoz Qlik.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is P2021);&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;B:&lt;/STRONG&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;ID,&lt;BR /&gt;Value,&lt;BR /&gt;Item&lt;BR /&gt;FROM [lib://Testno:DataFiles/Uvoz Qlik.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is P2022);&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;C:&lt;/STRONG&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;ID,&lt;BR /&gt;Year,&lt;BR /&gt;Customer&lt;BR /&gt;FROM [lib://Testno:DataFiles/Uvoz Qlik.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is G2021);&lt;/P&gt;
&lt;P&gt;D :&lt;BR /&gt;LOAD&lt;BR /&gt;ID,&lt;BR /&gt;Year,&lt;BR /&gt;Customer&lt;BR /&gt;FROM [lib://Testno:DataFiles/Uvoz Qlik.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is G2022);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jan 2022 07:30:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Concatenate-table-and-left-join/m-p/1883689#M72763</guid>
      <dc:creator>MK25</dc:creator>
      <dc:date>2022-01-21T07:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate table and left join</title>
      <link>https://community.qlik.com/t5/App-Development/Concatenate-table-and-left-join/m-p/1883707#M72767</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You can try like this :&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Fact:&lt;BR /&gt;//A:&lt;BR /&gt;LOAD &lt;BR /&gt;ID,&lt;BR /&gt;Value,&lt;BR /&gt;Item&lt;BR /&gt;FROM [lib://Testno:DataFiles/Uvoz Qlik.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is P2021);&lt;BR /&gt;Concatenate&lt;BR /&gt;//B:&lt;BR /&gt;LOAD&lt;BR /&gt;ID,&lt;BR /&gt;Value,&lt;BR /&gt;Item&lt;BR /&gt;FROM [lib://Testno:DataFiles/Uvoz Qlik.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is P2022);&lt;BR /&gt;left join(Fact)&lt;BR /&gt;//C:&lt;BR /&gt;LOAD&lt;BR /&gt;ID,&lt;BR /&gt;Year,&lt;BR /&gt;Customer&lt;BR /&gt;FROM [lib://Testno:DataFiles/Uvoz Qlik.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is G2021);&lt;BR /&gt;Concatenate&lt;BR /&gt;//D :&lt;BR /&gt;LOAD&lt;BR /&gt;ID,&lt;BR /&gt;Year,&lt;BR /&gt;Customer&lt;BR /&gt;FROM [lib://Testno:DataFiles/Uvoz Qlik.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is G2022);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this help you.&lt;/P&gt;
&lt;P&gt;Vikas&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jan 2022 08:21:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Concatenate-table-and-left-join/m-p/1883707#M72767</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2022-01-21T08:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate table and left join</title>
      <link>https://community.qlik.com/t5/App-Development/Concatenate-table-and-left-join/m-p/1883830#M72783</link>
      <description>&lt;P&gt;Thank you, but something go wrong. When I create table (Analyze/Edit sheet/Table) I get next result:&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="MK25_0-1642764890936.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/70691i8844370FBBFFDF39/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MK25_0-1642764890936.png" alt="MK25_0-1642764890936.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I marked only two problematic example. Any suggestions?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jan 2022 11:50:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Concatenate-table-and-left-join/m-p/1883830#M72783</guid>
      <dc:creator>MK25</dc:creator>
      <dc:date>2022-01-21T11:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate table and left join</title>
      <link>https://community.qlik.com/t5/App-Development/Concatenate-table-and-left-join/m-p/1883834#M72784</link>
      <description>&lt;P&gt;instead of left join can u try with outer join ? like&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;Outer join(Fact)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Vikas&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jan 2022 11:54:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Concatenate-table-and-left-join/m-p/1883834#M72784</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2022-01-21T11:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate table and left join</title>
      <link>https://community.qlik.com/t5/App-Development/Concatenate-table-and-left-join/m-p/1883920#M72791</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;table1:
LOAD A
Concatenate
LOAD B

tabTemp:
LOAD C
Concatenate
LOAD D

Left Join (table1)
LOAD * Resident tabTemp;

Drop Table tabTemp;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;hope this helps&lt;/P&gt;
&lt;P&gt;Marco&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jan 2022 14:13:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Concatenate-table-and-left-join/m-p/1883920#M72791</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2022-01-21T14:13:29Z</dc:date>
    </item>
  </channel>
</rss>

