<?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: not equal to operator in where Clause in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/not-equal-to-operator-in-where-Clause/m-p/1103#M793009</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is the result of the script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load *, 1as field2 inline [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;field&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;aaa&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;bbb&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;123aaa456&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;123bbb456&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ccc&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;cac&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;caac&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;where&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt;"&gt;not Match(field, 'aaa', 'bbb');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/190137_1.png" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;P&gt;aaa bbb are excluded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Jan 2018 19:05:28 GMT</pubDate>
    <dc:creator>maxgro</dc:creator>
    <dc:date>2018-01-15T19:05:28Z</dc:date>
    <item>
      <title>not equal to operator in where Clause</title>
      <link>https://community.qlik.com/t5/QlikView/not-equal-to-operator-in-where-Clause/m-p/1100#M793006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have been facing an issue where i am trying to exclude the records by using &amp;lt;&amp;gt; , not match, not wildmatch functions in the where clause. But none of them are actually excluding them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide us the suggestion to fix these issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;field1, &lt;/P&gt;&lt;P&gt;field2&lt;/P&gt;&lt;P&gt;From &amp;lt; Filename&amp;gt;&lt;/P&gt;&lt;P&gt;where &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;not WildMatch (element,'*aaa*','*bbb*');&amp;nbsp; [first option]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;element &lt;STRONG&gt;&amp;lt;&amp;gt;&lt;/STRONG&gt; 'aaa' or element&amp;nbsp; &lt;STRONG&gt;&amp;lt;&amp;gt;&lt;/STRONG&gt; 'bbb' [second option]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;not Match&lt;/STRONG&gt; (element,'*aaa*','*bbb*') [third option]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks in advance,&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/not-equal-to-operator-in-where-Clause/m-p/1100#M793006</guid>
      <dc:creator>remo0017</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: not equal to operator in where Clause</title>
      <link>https://community.qlik.com/t5/QlikView/not-equal-to-operator-in-where-Clause/m-p/1101#M793007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think these 2 option should work if you want to only exclude aaa bbb&lt;/P&gt;&lt;P&gt;- not match(field, 'aaa', 'bbb')&lt;/P&gt;&lt;P&gt;- field &amp;lt;&amp;gt; 'aaa' and field &amp;lt;&amp;gt; 'bbb'&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;S:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load * inline [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;field&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;aaa&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;bbb&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;123aaa456&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;123bbb456&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;ccc&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;cac&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;caac&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;where&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //field &amp;lt;&amp;gt; 'aaa' and field &amp;lt;&amp;gt; 'bbb';&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // option1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; not Match(field, 'aaa', 'bbb');&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // option2&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to exclude *aaa* and *bbb* try&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; not (field like '*aaa*' or field like '*bbb*')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; not WildMatch(field, '*aaa*', '*bbb*')&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jan 2018 18:59:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/not-equal-to-operator-in-where-Clause/m-p/1101#M793007</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2018-01-15T18:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: not equal to operator in where Clause</title>
      <link>https://community.qlik.com/t5/QlikView/not-equal-to-operator-in-where-Clause/m-p/1102#M793008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried second option, it's not getting excluded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jan 2018 19:02:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/not-equal-to-operator-in-where-Clause/m-p/1102#M793008</guid>
      <dc:creator>remo0017</dc:creator>
      <dc:date>2018-01-15T19:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: not equal to operator in where Clause</title>
      <link>https://community.qlik.com/t5/QlikView/not-equal-to-operator-in-where-Clause/m-p/1103#M793009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is the result of the script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load *, 1as field2 inline [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;field&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;aaa&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;bbb&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;123aaa456&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;123bbb456&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ccc&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;cac&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;caac&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;where&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt;"&gt;not Match(field, 'aaa', 'bbb');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/190137_1.png" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;P&gt;aaa bbb are excluded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jan 2018 19:05:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/not-equal-to-operator-in-where-Clause/m-p/1103#M793009</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2018-01-15T19:05:28Z</dc:date>
    </item>
  </channel>
</rss>

