<?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: Join or Concatenate? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Join-or-Concatenate/m-p/439090#M163634</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, i've got it.. i understand now the difference but don't know how to apply them when i have 3 tables like in this example, and i want to put "things" from table 1 to table 3 passing through table 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Jun 2013 04:21:27 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-06-05T04:21:27Z</dc:date>
    <item>
      <title>Join or Concatenate?</title>
      <link>https://community.qlik.com/t5/QlikView/Join-or-Concatenate/m-p/439088#M163632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey everybody i have this problem.&lt;/P&gt;&lt;P&gt;What's the difference between join and concatenate? Is this example OK? it's OK ib both ways?&lt;/P&gt;&lt;P&gt;Suppose i have 3 tables ALREADY created. Cust_Seller , Orders, Stock&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cust_Seller:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Cust_ID,&lt;/P&gt;&lt;P&gt;Seller_ID,&lt;/P&gt;&lt;P&gt;Key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Orders:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Order_ID,&lt;/P&gt;&lt;P&gt;Order_Articule&lt;/P&gt;&lt;P&gt;Order_Date,&lt;/P&gt;&lt;P&gt;Key;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stock:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Stock_ID&lt;/P&gt;&lt;P&gt;Order_ID,&lt;/P&gt;&lt;P&gt;Stock_Quantity,&lt;/P&gt;&lt;P&gt;Stock_Local;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i want is to put in table "Cust_Seller", the STOCK_ID.&amp;nbsp; so first i have to join ORDERS with Cust_Seller, put the Order_ID, and then join Stock with Cust_Seller, putting ONLY the Stock_ID (and relationing them with order_ID). Its OK????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Using join:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join (Cust_Seller)&amp;nbsp; // I only add Order_ID in Cust_sellers Table.. for those "Key" that matches?&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;Key,&lt;/P&gt;&lt;P&gt;Order_ID&lt;/P&gt;&lt;P&gt;Resident Orders;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join (Cust_Seller) // I only add Stock_ID in Cust_Sellers Table.. for those orders that macthes the previous orders added??&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;Order_ID,&lt;/P&gt;&lt;P&gt;Stock_ID&lt;/P&gt;&lt;P&gt;Resident (Stock)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Its OK????&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Using Concatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Key&lt;/P&gt;&lt;P&gt;Resident Cust_Sellers&lt;/P&gt;&lt;P&gt;CONCATENATE&amp;nbsp; // Here im adding all the orders_ID? I put distinct, in order to not aggregate same Keys as i had in the other table?&lt;/P&gt;&lt;P&gt;DISTINCT LOAD&lt;/P&gt;&lt;P&gt;Key&lt;/P&gt;&lt;P&gt;Order_ID&lt;/P&gt;&lt;P&gt;Resident Orders&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Order_ID&lt;/P&gt;&lt;P&gt;Resident Cust_Sellers&lt;/P&gt;&lt;P&gt;CONCATENATE // Here im adding all the Stock_ID? I put distinct, in order to not aggregate same orders as before...?&lt;/P&gt;&lt;P&gt;DISTINCT LOAD&lt;/P&gt;&lt;P&gt;Order_ID&lt;/P&gt;&lt;P&gt;Stock_ID&lt;/P&gt;&lt;P&gt;Resident Stock&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Its OK???&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Whats the difference between both?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anyone can help me wi the 2 versions i woul appreciate a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Licha. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Jun 2013 22:23:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-or-Concatenate/m-p/439088#M163632</guid>
      <dc:creator />
      <dc:date>2013-06-04T22:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Join or Concatenate?</title>
      <link>https://community.qlik.com/t5/QlikView/Join-or-Concatenate/m-p/439089#M163633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u may take a look with this: &lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/thread/39177" title="http://community.qlik.com/thread/39177"&gt;http://community.qlik.com/thread/39177&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2013 01:53:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-or-Concatenate/m-p/439089#M163633</guid>
      <dc:creator>laujerry</dc:creator>
      <dc:date>2013-06-05T01:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: Join or Concatenate?</title>
      <link>https://community.qlik.com/t5/QlikView/Join-or-Concatenate/m-p/439090#M163634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, i've got it.. i understand now the difference but don't know how to apply them when i have 3 tables like in this example, and i want to put "things" from table 1 to table 3 passing through table 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2013 04:21:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-or-Concatenate/m-p/439090#M163634</guid>
      <dc:creator />
      <dc:date>2013-06-05T04:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: Join or Concatenate?</title>
      <link>https://community.qlik.com/t5/QlikView/Join-or-Concatenate/m-p/439091#M163635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Licha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Try This hope it is heplful else upload your sample app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Cust_Seller:&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;LOAD&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Cust_ID,&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Seller_ID,&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;left join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Orders:&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;LOAD&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Order_ID,&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Order_Articule&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Order_Date,&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Key;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;left join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Stock:&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;LOAD&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Stock_ID&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Order_ID,&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Stock_Quantity,&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 13px; color: #737373; font-family: Arial;"&gt;Stock_Local;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2013 05:52:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-or-Concatenate/m-p/439091#M163635</guid>
      <dc:creator />
      <dc:date>2013-06-05T05:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: Join or Concatenate?</title>
      <link>https://community.qlik.com/t5/QlikView/Join-or-Concatenate/m-p/439092#M163636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, first, thanks for answering!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12.727272033691406px; color: #737373; font-family: Arial;"&gt;It Compiles but then it doesn't work properly (maybe i didn't explain what i want very well)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12.727272033691406px; color: #737373; font-family: Arial;"&gt;I put here the cvs and 2 images of the initial and final situation. I hope u can help me to solve this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12.727272033691406px; color: #737373; font-family: Arial;"&gt;&lt;A class="loading" href="http://bitshare.com/files/75vqgvm8/EXAMPLE.rar.html" title="http://bitshare.com/files/75vqgvm8/EXAMPLE.rar.html"&gt;http://bitshare.com/files/75vqgvm8/EXAMPLE.rar.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12.727272033691406px; color: #737373; font-family: Arial;"&gt;Thanks very much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2013 22:26:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-or-Concatenate/m-p/439092#M163636</guid>
      <dc:creator />
      <dc:date>2013-06-05T22:26:49Z</dc:date>
    </item>
  </channel>
</rss>

