<?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 Where condition using 'IN' 'LOAD' in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Where-condition-using-IN-LOAD/m-p/164243#M37009</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Qlikers,&lt;/P&gt;&lt;P&gt;As we do in SQL:&lt;/P&gt;&lt;P&gt;Select &amp;lt;f1&amp;gt;, &amp;lt;f2&amp;gt; from abc where &amp;lt;f1&amp;gt; IN (Select &amp;lt;f1&amp;gt; from def)&lt;/P&gt;&lt;P&gt;Can we do a similar execution using the LOAD in Qlikview.&lt;/P&gt;&lt;P&gt;LOAD &amp;lt;f1&amp;gt;, &amp;lt;f2&amp;gt; resident abc where &amp;lt;f1&amp;gt; IN (LOAD &amp;lt;f1&amp;gt; resident def)&lt;/P&gt;&lt;P&gt;Did not research a lot. Thought first I will ask you guys.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 May 2010 18:07:27 GMT</pubDate>
    <dc:creator>boorgura</dc:creator>
    <dc:date>2010-05-25T18:07:27Z</dc:date>
    <item>
      <title>Where condition using 'IN' 'LOAD'</title>
      <link>https://community.qlik.com/t5/QlikView/Where-condition-using-IN-LOAD/m-p/164243#M37009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Qlikers,&lt;/P&gt;&lt;P&gt;As we do in SQL:&lt;/P&gt;&lt;P&gt;Select &amp;lt;f1&amp;gt;, &amp;lt;f2&amp;gt; from abc where &amp;lt;f1&amp;gt; IN (Select &amp;lt;f1&amp;gt; from def)&lt;/P&gt;&lt;P&gt;Can we do a similar execution using the LOAD in Qlikview.&lt;/P&gt;&lt;P&gt;LOAD &amp;lt;f1&amp;gt;, &amp;lt;f2&amp;gt; resident abc where &amp;lt;f1&amp;gt; IN (LOAD &amp;lt;f1&amp;gt; resident def)&lt;/P&gt;&lt;P&gt;Did not research a lot. Thought first I will ask you guys.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 18:07:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-condition-using-IN-LOAD/m-p/164243#M37009</guid>
      <dc:creator>boorgura</dc:creator>
      <dc:date>2010-05-25T18:07:27Z</dc:date>
    </item>
    <item>
      <title>Where condition using 'IN' 'LOAD'</title>
      <link>https://community.qlik.com/t5/QlikView/Where-condition-using-IN-LOAD/m-p/164244#M37010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rocky,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;unfortunately, "IN" functionality is not implemented in QlikView. You can use somewhat similar exists(), only keep in mind that the comparizon is performed at the field level, as opposed to a table level. If you have to ensure that you are comparing to existing values of a field in a specific table, make the field unique to tha table (in other words, if you compare to a key field, create another copy of the same field just in the desired table, and compare to the copied field instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 19:14:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-condition-using-IN-LOAD/m-p/164244#M37010</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2010-05-25T19:14:37Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Where condition using 'IN' 'LOAD'</title>
      <link>https://community.qlik.com/t5/QlikView/Where-condition-using-IN-LOAD/m-p/164245#M37011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use match instead&lt;/P&gt;&lt;P&gt;match( s, expr1 [ , expr2, ...exprN ] )&lt;/P&gt;&lt;P&gt;Compares the string s to a list of strings or string expressions. The&lt;BR /&gt;result of the comparison is an integer indicating which of the comparison&lt;BR /&gt;strings/expressions matched. If no match is found, 0 is&lt;BR /&gt;returned. The match function performs a case sensitive comparison.&lt;BR /&gt;Examples:&lt;BR /&gt;match( M , 'Jan' , 'Feb' , 'Mar' )&lt;BR /&gt;where M is 'Feb' returns 2&lt;BR /&gt;match( M , 'Jan' , 'Feb' , 'Mar' )&lt;BR /&gt;where M is 'Apr' or 'jan' returns 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 07:42:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-condition-using-IN-LOAD/m-p/164245#M37011</guid>
      <dc:creator />
      <dc:date>2010-05-26T07:42:40Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Where condition using 'IN' 'LOAD'</title>
      <link>https://community.qlik.com/t5/QlikView/Where-condition-using-IN-LOAD/m-p/164246#M37012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would do the same thing if it were a limited standard set of values to compare with.&lt;/P&gt;&lt;P&gt;But that is all the data for a given date.&lt;/P&gt;&lt;P&gt;So, I would assume this not to be solution for it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 15:12:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-condition-using-IN-LOAD/m-p/164246#M37012</guid>
      <dc:creator>boorgura</dc:creator>
      <dc:date>2010-05-26T15:12:47Z</dc:date>
    </item>
  </channel>
</rss>

