<?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 relational operators in expressions in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291643#M1202723</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want PRINCIPAL_ID to be greater than 2 it would be&lt;/P&gt;&lt;P&gt;&amp;lt;PRINCIPAL_ID = {"&amp;gt;2"}&amp;gt;&lt;/P&gt;&lt;P&gt;and greater than or equal to 2 would be&lt;/P&gt;&lt;P&gt;&amp;lt;PRINCIPAL_ID = {"&amp;gt;=2"}&amp;gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Nov 2010 21:20:57 GMT</pubDate>
    <dc:creator>pover</dc:creator>
    <dc:date>2010-11-30T21:20:57Z</dc:date>
    <item>
      <title>relational operators in expressions</title>
      <link>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291638#M1202718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was trying to use the &amp;lt;&amp;gt; in an expression as per the Help file&lt;/P&gt;&lt;P&gt;it didn't work but -= did work as not equal&lt;/P&gt;&lt;P&gt;now I want to use greater than - the help file says &amp;gt; , &amp;gt;=, &amp;lt; , &amp;lt;= etc&lt;/P&gt;&lt;P&gt;none of these work - is the help file wrong? it certainly was for the not equal to !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 17:21:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291638#M1202718</guid>
      <dc:creator />
      <dc:date>2010-11-30T17:21:59Z</dc:date>
    </item>
    <item>
      <title>relational operators in expressions</title>
      <link>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291639#M1202719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I assume you're talking about set analysis which has a different syntax than the conditional statement of an if so instead of using sum(if(Year&amp;gt;2000,Amount)) you have to put sum({$&amp;lt;Year={"&amp;gt;2000"}&amp;gt;} Amount).&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 17:34:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291639#M1202719</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2010-11-30T17:34:23Z</dc:date>
    </item>
    <item>
      <title>relational operators in expressions</title>
      <link>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291640#M1202720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply - it works&lt;/P&gt;&lt;P&gt;&amp;lt;PRINCIPAL_ID = {"&amp;lt;&amp;gt;4"}&amp;gt;&lt;/P&gt;&lt;P&gt;but misses some values and doesn't give me the same results as- misses out some data&lt;/P&gt;&lt;P&gt;&amp;lt;PRINCIPAL_ID -= {4}&amp;gt;&lt;/P&gt;&lt;P&gt;do I need the $ sign at the beginning of the set analysis?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 17:51:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291640#M1202720</guid>
      <dc:creator />
      <dc:date>2010-11-30T17:51:11Z</dc:date>
    </item>
    <item>
      <title>relational operators in expressions</title>
      <link>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291641#M1202721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;PRINCIPAL_ID = {"&amp;lt;&amp;gt;4"}&amp;gt; is not a valid search as QlikView will interpret the &amp;lt;&amp;gt; as less than and greater than. The result will be all PRINCIPAL_ID's greater than 4. The syntax -= is what you want to use. You can also use &amp;lt;PRINCIPAL_ID = {"=not match(PRINCIPAL_ID,4)"}&amp;gt;&lt;/P&gt;&lt;P&gt;Am I missing some other detail of what you are looking for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 18:38:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291641#M1202721</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2010-11-30T18:38:47Z</dc:date>
    </item>
    <item>
      <title>relational operators in expressions</title>
      <link>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291642#M1202722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only other question is what would I use if i wanted greater than 2&lt;/P&gt;&lt;P&gt;or if I wanted greater than or equal to 2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 18:42:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291642#M1202722</guid>
      <dc:creator />
      <dc:date>2010-11-30T18:42:53Z</dc:date>
    </item>
    <item>
      <title>relational operators in expressions</title>
      <link>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291643#M1202723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want PRINCIPAL_ID to be greater than 2 it would be&lt;/P&gt;&lt;P&gt;&amp;lt;PRINCIPAL_ID = {"&amp;gt;2"}&amp;gt;&lt;/P&gt;&lt;P&gt;and greater than or equal to 2 would be&lt;/P&gt;&lt;P&gt;&amp;lt;PRINCIPAL_ID = {"&amp;gt;=2"}&amp;gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 21:20:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291643#M1202723</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2010-11-30T21:20:57Z</dc:date>
    </item>
    <item>
      <title>relational operators in expressions</title>
      <link>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291644#M1202724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much - it all works fine now&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 21:39:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/relational-operators-in-expressions/m-p/291644#M1202724</guid>
      <dc:creator />
      <dc:date>2010-11-30T21:39:23Z</dc:date>
    </item>
  </channel>
</rss>

