<?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: Need help in simple qlikview script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622787#M1108548</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here is the link - &lt;A href="https://community.qlik.com/message/495456"&gt;Understanding EXISTS() function - Qlikview vs SQL/RDBMS&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Mar 2014 01:31:56 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-03-26T01:31:56Z</dc:date>
    <item>
      <title>Need help in simple qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622778#M1108539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The script - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE style="font-family: monospace, serif; font-size: inherit; font-weight: inherit;"&gt;TABLE1:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F1, F2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, a&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, b&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, c&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F1, F2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, d&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, e&lt;BR /&gt;]&lt;BR /&gt;WHERE NOT Exists(F1)&lt;BR /&gt;;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know SQL and the syntax for Qlikview's "where" confuses me. In "&lt;SPAN style="font-family: monospace, serif;"&gt;WHERE NOT Exists(F1)&lt;/SPAN&gt;" F1 belongs to which table ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 00:59:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622778#M1108539</guid>
      <dc:creator />
      <dc:date>2014-03-26T00:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in simple qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622779#M1108540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the above script, F1 refers to both the first and the second tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 01:04:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622779#M1108540</guid>
      <dc:creator>srchilukoori</dc:creator>
      <dc:date>2014-03-26T01:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in simple qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622780#M1108541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually the not exists in the second load statement checks if the value of F1 being loaded is already present in the data model, in this case Table1. Since 4 is not already present, both the rows will be added.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To be more clear it is like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where not exists ( F1, F1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1st argument is the already loaded field&lt;/P&gt;&lt;P&gt;second argument is the field being loaded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case the field name is different we can use as follows:&lt;/P&gt;&lt;P&gt;where not exists ( F1, Field1).&amp;nbsp; Since in your case the field name is the same the second argument can be skipped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ram&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 01:05:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622780#M1108541</guid>
      <dc:creator />
      <dc:date>2014-03-26T01:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in simple qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622781#M1108542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Attaching the help screen shot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 01:08:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622781#M1108542</guid>
      <dc:creator />
      <dc:date>2014-03-26T01:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in simple qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622782#M1108543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks. Where can i see rest of the documentation in screenshot, ie API ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 01:14:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622782#M1108543</guid>
      <dc:creator />
      <dc:date>2014-03-26T01:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in simple qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622783#M1108544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;goto your qlikview desktop, press F1. type exists. You will get the documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 01:15:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622783#M1108544</guid>
      <dc:creator />
      <dc:date>2014-03-26T01:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in simple qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622784#M1108545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the Help documentation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 01:16:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622784#M1108545</guid>
      <dc:creator>srchilukoori</dc:creator>
      <dc:date>2014-03-26T01:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in simple qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622785#M1108546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt; Since 4 is not already present, both the rows will be added.&lt;/SPAN&gt;" That is incorrect. Only one row will be added. More on that later.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 01:17:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622785#M1108546</guid>
      <dc:creator />
      <dc:date>2014-03-26T01:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in simple qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622786#M1108547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you are correct. I didn't notice. For both to be added, we need the condition slightly modified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where not exists(F1) or not exists(F2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reason being we are checking for not exists(F1) and that works iteratively. We read the value of 4 for F1 and when we read the next row, since 4 is already available it didn't read it. Basically we can tweak this based on our needs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 01:20:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622786#M1108547</guid>
      <dc:creator />
      <dc:date>2014-03-26T01:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in simple qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622787#M1108548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here is the link - &lt;A href="https://community.qlik.com/message/495456"&gt;Understanding EXISTS() function - Qlikview vs SQL/RDBMS&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 01:31:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622787#M1108548</guid>
      <dc:creator />
      <dc:date>2014-03-26T01:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in simple qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622788#M1108549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there also a web docs for this, like API ? Anyway, this is how I got there - &lt;/P&gt;&lt;P&gt;Help &amp;gt; Contents or WebView Help &amp;gt; Index tab &amp;gt; Enter search word. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 01:35:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-in-simple-qlikview-script/m-p/622788#M1108549</guid>
      <dc:creator />
      <dc:date>2014-03-26T01:35:30Z</dc:date>
    </item>
  </channel>
</rss>

