<?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 How to use 'In' within where keyword? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-use-In-within-where-keyword/m-p/223376#M75910</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'd use one of the following. In case of very few values, Match()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Customers:LOAD *FROM File.qvd (qvd)WHERE Match(CustomerID, 'AAA', 'BBB');&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;If there are several possibilities or they depend on other field, Exists():&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Sales:LOAD *FROM Invoices.qvd (qvd); Customers:LOAD *FROM Customers.qvd (qvd)WHERE Exists(CustomerID); // Will load only those CustomerID present in the Sales table as well&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Feb 2011 09:13:39 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2011-02-21T09:13:39Z</dc:date>
    <item>
      <title>How to use 'In' within where keyword?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-In-within-where-keyword/m-p/223375#M75909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Does QV where keyword supports 'In' word like it is in SQL?&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;Load * from table where Field in (1,2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Feb 2011 08:51:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-In-within-where-keyword/m-p/223375#M75909</guid>
      <dc:creator />
      <dc:date>2011-02-21T08:51:14Z</dc:date>
    </item>
    <item>
      <title>How to use 'In' within where keyword?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-In-within-where-keyword/m-p/223376#M75910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'd use one of the following. In case of very few values, Match()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Customers:LOAD *FROM File.qvd (qvd)WHERE Match(CustomerID, 'AAA', 'BBB');&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;If there are several possibilities or they depend on other field, Exists():&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Sales:LOAD *FROM Invoices.qvd (qvd); Customers:LOAD *FROM Customers.qvd (qvd)WHERE Exists(CustomerID); // Will load only those CustomerID present in the Sales table as well&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Feb 2011 09:13:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-In-within-where-keyword/m-p/223376#M75910</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-02-21T09:13:39Z</dc:date>
    </item>
    <item>
      <title>How to use 'In' within where keyword?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-In-within-where-keyword/m-p/223377#M75911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can have a look at EXISTS function or MATCH function.&lt;/P&gt;&lt;P&gt;Regards, tresesco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Feb 2011 09:16:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-In-within-where-keyword/m-p/223377#M75911</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2011-02-21T09:16:03Z</dc:date>
    </item>
    <item>
      <title>How to use 'In' within where keyword?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-In-within-where-keyword/m-p/223378#M75912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use IN while fetching data from database&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;--------------------------------------------&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;A,B,C&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;BR /&gt;FROM DB.dbo."Table1"&lt;BR /&gt;where upper(status)in('ACTIVE','ABC');&lt;/P&gt;&lt;P&gt;--------------------------------------------&lt;/P&gt;&lt;P&gt;You can not use IN while fetching data from QVD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Feb 2011 09:18:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-In-within-where-keyword/m-p/223378#M75912</guid>
      <dc:creator />
      <dc:date>2011-02-21T09:18:03Z</dc:date>
    </item>
  </channel>
</rss>

