<?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: Left Join with Where clause on the Join in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Left-Join-with-Where-clause-on-the-Join/m-p/136443#M754248</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awsome,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you mark the correct anwser as correct so others can see it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Oct 2018 16:14:51 GMT</pubDate>
    <dc:creator>felipedl</dc:creator>
    <dc:date>2018-10-05T16:14:51Z</dc:date>
    <item>
      <title>Left Join with Where clause on the Join</title>
      <link>https://community.qlik.com/t5/QlikView/Left-Join-with-Where-clause-on-the-Join/m-p/136440#M754245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have not found an answer to how to write a Left Join where I only want the rows in the Left table that DON'T have a value in the right table.&amp;nbsp; Maybe this is a 2 step process of creating the joined table and then reloading with the Where clause?&amp;nbsp; Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-Join-with-Where-clause-on-the-Join/m-p/136440#M754245</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Left Join with Where clause on the Join</title>
      <link>https://community.qlik.com/t5/QlikView/Left-Join-with-Where-clause-on-the-Join/m-p/136441#M754246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just write of the regular left join and on a second resident load, do a check to which values don't exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;Load * inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Id,Value&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2,B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3,C&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;joinData:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Load * inline&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;[&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Id,Value&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,A&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2,B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;];&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;left join (data)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Load *,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1 as [Flag Exists]&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Resident joinData;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;NoConcatenate&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;finalData:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Load *&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Resident data&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;where isNull([Flag Exists]);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;drop tables data,&lt;SPAN style="font-size: 13.3333px;"&gt;joinData&lt;/SPAN&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2018 13:16:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-Join-with-Where-clause-on-the-Join/m-p/136441#M754246</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-10-05T13:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Left Join with Where clause on the Join</title>
      <link>https://community.qlik.com/t5/QlikView/Left-Join-with-Where-clause-on-the-Join/m-p/136442#M754247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Felip for the solution.&lt;/P&gt;&lt;P&gt;I tried the below and it worked. I renamed the common field in table2 to make this happen.&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * inline&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;[&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Id,Value&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2,B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3,C&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; left join (data) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * inline&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;[&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Id,ValueB&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,A&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2,B&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;] ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;Load * &lt;/P&gt;&lt;P&gt;Resident data&lt;/P&gt;&lt;P&gt;where IsNull(ValueB);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop Table data;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2018 14:49:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-Join-with-Where-clause-on-the-Join/m-p/136442#M754247</guid>
      <dc:creator>QlikNoviceNo1</dc:creator>
      <dc:date>2018-10-05T14:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Left Join with Where clause on the Join</title>
      <link>https://community.qlik.com/t5/QlikView/Left-Join-with-Where-clause-on-the-Join/m-p/136443#M754248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awsome,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you mark the correct anwser as correct so others can see it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2018 16:14:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-Join-with-Where-clause-on-the-Join/m-p/136443#M754248</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-10-05T16:14:51Z</dc:date>
    </item>
  </channel>
</rss>

