<?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 Join question in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Join-question/m-p/304997#M112673</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting "field not found (Qty)" when I reload this script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt; ProductID,&lt;/P&gt;&lt;P&gt; Price&lt;/P&gt;&lt;P&gt;From ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T2:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt; OrderID,&lt;/P&gt;&lt;P&gt; ProductID,&lt;/P&gt;&lt;P&gt; Qty&lt;/P&gt;&lt;P&gt;From ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inner Join Load Qty * Price as SalesPrice from T1;&lt;/P&gt;&lt;P&gt;----------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I join two tables on a calculated column?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jul 2011 15:45:31 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-07-25T15:45:31Z</dc:date>
    <item>
      <title>Join question</title>
      <link>https://community.qlik.com/t5/QlikView/Join-question/m-p/304997#M112673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting "field not found (Qty)" when I reload this script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt; ProductID,&lt;/P&gt;&lt;P&gt; Price&lt;/P&gt;&lt;P&gt;From ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T2:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt; OrderID,&lt;/P&gt;&lt;P&gt; ProductID,&lt;/P&gt;&lt;P&gt; Qty&lt;/P&gt;&lt;P&gt;From ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inner Join Load Qty * Price as SalesPrice from T1;&lt;/P&gt;&lt;P&gt;----------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I join two tables on a calculated column?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 15:45:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-question/m-p/304997#M112673</guid>
      <dc:creator />
      <dc:date>2011-07-25T15:45:31Z</dc:date>
    </item>
    <item>
      <title>Join question</title>
      <link>https://community.qlik.com/t5/QlikView/Join-question/m-p/304998#M112674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QlikView join is a bit different from a SQL join that we are used to... In SQL, when you join 2 tables, you can instantly use fields from both tables. in QlikView, when you join, it's more like "pouring" data from one bucket into another. During the join load, only the fields from the "source" table are available to you. So, to overcome this limitation, you need to first join the two tables, and then reload the result in memory ("resident load") and make the calculation there. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the other hand, if the whole purpose of your Join is to bring in a single field (like a price), you are better off using MAPPING load and ApplyMap, to grab the price for each Product, without using the join - it's faster in most cases, and certainly "cleaner" than a join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 15:51:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-question/m-p/304998#M112674</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2011-07-25T15:51:18Z</dc:date>
    </item>
    <item>
      <title>Join question</title>
      <link>https://community.qlik.com/t5/QlikView/Join-question/m-p/304999#M112675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please try &lt;/P&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt; ProductID,&lt;/P&gt;&lt;P&gt; Price&lt;/P&gt;&lt;P&gt;From ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T2:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt; OrderID,&lt;/P&gt;&lt;P&gt; ProductID,&lt;/P&gt;&lt;P&gt; Qty&lt;/P&gt;&lt;P&gt;From ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inner Join Load Qty * Price as SalesPrice resident T1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2011 04:22:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-question/m-p/304999#M112675</guid>
      <dc:creator>perumal_41</dc:creator>
      <dc:date>2011-07-26T04:22:53Z</dc:date>
    </item>
  </channel>
</rss>

