<?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 Difference between two tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Difference-between-two-tables/m-p/1339253#M837744</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;SPAN class="target-lang"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="translation"&gt;I want to load the fields of a table which are not contained in another.&lt;/P&gt;&lt;P class="translation"&gt;&lt;/P&gt;&lt;P class="translation"&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/164761_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P class="translation"&gt;&lt;/P&gt;&lt;P class="translation"&gt;&lt;/P&gt;&lt;P class="translation"&gt;Does anyone have an idea how I can implement this?&lt;/P&gt;&lt;P class="translation"&gt;&lt;/P&gt;&lt;P class="translation"&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>qlikviewalex</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Difference between two tables</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-two-tables/m-p/1339253#M837744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;SPAN class="target-lang"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="translation"&gt;I want to load the fields of a table which are not contained in another.&lt;/P&gt;&lt;P class="translation"&gt;&lt;/P&gt;&lt;P class="translation"&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/164761_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P class="translation"&gt;&lt;/P&gt;&lt;P class="translation"&gt;&lt;/P&gt;&lt;P class="translation"&gt;Does anyone have an idea how I can implement this?&lt;/P&gt;&lt;P class="translation"&gt;&lt;/P&gt;&lt;P class="translation"&gt;Alex&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/Difference-between-two-tables/m-p/1339253#M837744</guid>
      <dc:creator>qlikviewalex</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two tables</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-two-tables/m-p/1339254#M837745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As variant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S:&lt;/P&gt;&lt;P&gt;LOAD*,&lt;/P&gt;&lt;P&gt;0 as Flag,&lt;/P&gt;&lt;P&gt;A&amp;amp;'|'&amp;amp;'|'&amp;amp;B&amp;amp;'|'&amp;amp;C as Key; &lt;STRONG&gt;//include fields that do not to be the same&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD*Inline&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;[A, B, C&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;7, 8, 9&lt;/P&gt;&lt;P&gt;4, 5, 6&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R:&lt;/P&gt;&lt;P&gt;LOAD*,&lt;/P&gt;&lt;P&gt;If(Exists(Key, A&amp;amp;'|'&amp;amp;'|'&amp;amp;B&amp;amp;'|'&amp;amp;C)=-1, 0, 1) as Flag,&lt;/P&gt;&lt;P&gt;A&amp;amp;'|'&amp;amp;'|'&amp;amp;B&amp;amp;'|'&amp;amp;C as Key;&lt;STRONG&gt; //include fields that do not to be the same&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD*Inline&lt;/P&gt;&lt;P&gt;[A, B, C&lt;/P&gt;&lt;P&gt;1, 2, 3&lt;/P&gt;&lt;P&gt;4, 5, 6&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;R\S:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;A, B, C &lt;/P&gt;&lt;P&gt;Resident S&lt;/P&gt;&lt;P&gt;Where Flag = 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table S;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/164858_1.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andrey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2017 10:43:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-two-tables/m-p/1339254#M837745</guid>
      <dc:creator>ahaahaaha</dc:creator>
      <dc:date>2017-05-26T10:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two tables</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-two-tables/m-p/1339255#M837746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please share your expected output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2017 10:51:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-two-tables/m-p/1339255#M837746</guid>
      <dc:creator>prma7799</dc:creator>
      <dc:date>2017-05-26T10:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two tables</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-two-tables/m-p/1339256#M837747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;may be this&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;R:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;STRONG style=": ; color: #0000ff;"&gt;LOAD&lt;/STRONG&gt; * &lt;SPAN style="color: #0000ff;"&gt;Inline&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[&lt;BR /&gt; A,B,C&lt;BR /&gt; 1,2,3&lt;BR /&gt; 4,5,6&lt;BR /&gt; ]&lt;/SPAN&gt;;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;Join&lt;/SPAN&gt;&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;Load&lt;/STRONG&gt; *,1 &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Flag&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;Inline&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[&lt;BR /&gt; A,B,C&lt;BR /&gt; 7,8,9&lt;BR /&gt; 4,5,6&lt;BR /&gt; ]&lt;/SPAN&gt;;&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;LOAD&lt;/STRONG&gt; &lt;SPAN style="color: #800000;"&gt;A&lt;/SPAN&gt;,&lt;SPAN style="color: #800000;"&gt;B&lt;/SPAN&gt;,&lt;SPAN style="color: #800000;"&gt;C&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;Resident&lt;/SPAN&gt; R &lt;SPAN style="color: #0000ff;"&gt;Where&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Flag&lt;/SPAN&gt; &amp;lt;&amp;gt; 1;&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;Drop&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff;"&gt;Table&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; R; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/164872_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Antonio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2017 11:45:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-two-tables/m-p/1339256#M837747</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2017-05-26T11:45:20Z</dc:date>
    </item>
  </channel>
</rss>

