<?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: Help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help/m-p/896434#M311991</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gourav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please read discussion&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/111999"&gt;Understanding EXISTS() function - Qlikview vs SQL/RDBMS&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And in the attached app try to load different scenarios you will get some idea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Jul 2015 09:04:02 GMT</pubDate>
    <dc:creator>qlikmsg4u</dc:creator>
    <dc:date>2015-07-17T09:04:02Z</dc:date>
    <item>
      <title>Help</title>
      <link>https://community.qlik.com/t5/QlikView/Help/m-p/896433#M311990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am New In qlikview... I want to Full knowledge of Exists Function or Where Exists Not Exists..........Please Help Me......With Example QVW.............&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2015 08:59:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help/m-p/896433#M311990</guid>
      <dc:creator>panipat1990</dc:creator>
      <dc:date>2015-07-17T08:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Help</title>
      <link>https://community.qlik.com/t5/QlikView/Help/m-p/896434#M311991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gourav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please read discussion&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/111999"&gt;Understanding EXISTS() function - Qlikview vs SQL/RDBMS&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And in the attached app try to load different scenarios you will get some idea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2015 09:04:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help/m-p/896434#M311991</guid>
      <dc:creator>qlikmsg4u</dc:creator>
      <dc:date>2015-07-17T09:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Help</title>
      <link>https://community.qlik.com/t5/QlikView/Help/m-p/896435#M311992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At first take a look at help, then I can add a simple example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose you have loaded&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select A, B, C from myTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then you need to load another table but only the records where A yet exists (in the previous select) so you can write&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load A1, B1, C1 resident Table2 where Exists(A, A1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this case only records from table2 having A1 in the records of myTable will be loaded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2015 09:04:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help/m-p/896435#M311992</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-07-17T09:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Help</title>
      <link>https://community.qlik.com/t5/QlikView/Help/m-p/896436#M311993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14371243602111987 jive_text_macro" jivemacro_uid="_14371243602111987"&gt;
&lt;P&gt;// Where Exists&lt;/P&gt;
&lt;P&gt;// Consider that you have Sales Table and Customer Table. &lt;/P&gt;
&lt;P&gt;// You want to load only those Customer Data for which Sales Exists.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Sales:&lt;/P&gt;
&lt;P&gt;Load *, Customer as TempCustomer Inline&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Customer, Sales&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A, 100&lt;/P&gt;
&lt;P&gt;&amp;nbsp; B, 120&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Customer:&lt;/P&gt;
&lt;P&gt;Load * Inline&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Customer, Country&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A, UK&lt;/P&gt;
&lt;P&gt;&amp;nbsp; B, Germany&lt;/P&gt;
&lt;P&gt;&amp;nbsp; C, India&lt;/P&gt;
&lt;P&gt;] Where Exists (TempCustomer, Customer);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Drop Field TempCustomer;&lt;/P&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;
&lt;P&gt;// Where Not Exists&lt;/P&gt;
&lt;P&gt;// Consider you have Employee information stored in OldRecords Table. &lt;/P&gt;
&lt;P&gt;// Now you received NewRecords table and want to update the table.&lt;/P&gt;
&lt;P&gt;// Here you have to load NewRecordes and only those Employee &lt;/P&gt;
&lt;P&gt;// from OldRecords table which are not present in NewRecords table. &lt;/P&gt;
&lt;P&gt;// Here you can use Where Not Exists. &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;NewRecords:&lt;/P&gt;
&lt;P&gt;Load * Inline&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Employee, Address&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A, 4444 UK&lt;/P&gt;
&lt;P&gt;&amp;nbsp; B, 9999 Germany&lt;/P&gt;
&lt;P&gt;&amp;nbsp; D, 1111 Poland&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;OldRecords:&lt;/P&gt;
&lt;P&gt;Load * Inline&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Employee, Address&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A, 1234 UK&lt;/P&gt;
&lt;P&gt;&amp;nbsp; B, 3456 Geramy&lt;/P&gt;
&lt;P&gt;&amp;nbsp; C, 4534 France&lt;/P&gt;
&lt;P&gt;] Where Not Exists (Employee);&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2015 09:12:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help/m-p/896436#M311993</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-07-17T09:12:43Z</dc:date>
    </item>
  </channel>
</rss>

