<?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 clause in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035390#M466175</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;/P&gt;&lt;P&gt;following table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID, Count&lt;/P&gt;&lt;P&gt;100, 1&lt;/P&gt;&lt;P&gt;200, 5&lt;/P&gt;&lt;P&gt;300, 4&lt;/P&gt;&lt;P&gt;100, 5&lt;/P&gt;&lt;P&gt;100, 4&lt;/P&gt;&lt;P&gt;200, 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If ID = 100 and Count = 1 he should not load this data but everything else.&lt;/P&gt;&lt;P&gt;I thought that where ID &amp;lt;&amp;gt; 100 and Count = 1 should work but in this case he delete everything which have ID 100 and count1. But I need this where clause in a combination [ID = 100 AND Count = 1]!!!&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, 15 Feb 2016 12:13:03 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-02-15T12:13:03Z</dc:date>
    <item>
      <title>Where clause</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035390#M466175</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;/P&gt;&lt;P&gt;following table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID, Count&lt;/P&gt;&lt;P&gt;100, 1&lt;/P&gt;&lt;P&gt;200, 5&lt;/P&gt;&lt;P&gt;300, 4&lt;/P&gt;&lt;P&gt;100, 5&lt;/P&gt;&lt;P&gt;100, 4&lt;/P&gt;&lt;P&gt;200, 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If ID = 100 and Count = 1 he should not load this data but everything else.&lt;/P&gt;&lt;P&gt;I thought that where ID &amp;lt;&amp;gt; 100 and Count = 1 should work but in this case he delete everything which have ID 100 and count1. But I need this where clause in a combination [ID = 100 AND Count = 1]!!!&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, 15 Feb 2016 12:13:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035390#M466175</guid>
      <dc:creator />
      <dc:date>2016-02-15T12:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035391#M466176</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: 13px;"&gt;WHERE NOT EXISTS (id&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;,1)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2016 12:15:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035391#M466176</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-02-15T12:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035392#M466177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where not (ID = 100 and Count = 1);&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2016 12:16:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035392#M466177</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-15T12:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035393#M466178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This should also work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where ID &amp;lt;&amp;gt; 100 or Count &amp;lt;&amp;gt; 1;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2016 12:17:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035393#M466178</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-15T12:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035394#M466179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;from YourTable where &lt;/STRONG&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ID &amp;lt;&amp;gt; 100 or Count &amp;lt;&amp;gt; 1;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2016 12:23:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035394#M466179</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-15T12:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035395#M466180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need a combination look at my example if Object = A and Anzahl &amp;gt; 2 this should not be loaded...&lt;/P&gt;&lt;P&gt;IF Object = A and Anzahl = 1 It must be loaded! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2016 12:24:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035395#M466180</guid>
      <dc:creator />
      <dc:date>2016-02-15T12:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035396#M466181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2016 12:25:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035396#M466181</guid>
      <dc:creator />
      <dc:date>2016-02-15T12:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035397#M466182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;right then either of these should work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where not (&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Object = 'A' and Anzahl &amp;gt; 2);&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where Object &amp;lt;&amp;gt; 'A' or &lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Anzahl &amp;lt;= 2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2016 12:26:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035397#M466182</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-15T12:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035398#M466183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="color: #3d3d3d; font-size: 12px; background-color: #f2f2f2; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; text-decoration: underline;"&gt;&lt;EM&gt;Where not Exists (&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; text-decoration: underline;"&gt;&lt;EM&gt;Object = 'A' and Anzahl &amp;gt; 2);&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2016 12:27:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035398#M466183</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-02-15T12:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035399#M466184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is your desired output for the attached qvw?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2016 12:29:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035399#M466184</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-15T12:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035400#M466185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hans,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Can you try below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where ((Object = A and Anzahl &amp;lt;=2) or (Object&amp;lt;&amp;gt;'A'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Sreeman.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2016 12:32:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause/m-p/1035400#M466185</guid>
      <dc:creator />
      <dc:date>2016-02-15T12:32:24Z</dc:date>
    </item>
  </channel>
</rss>

