<?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 &amp;quot;Where not equal&amp;quot; not working in script load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/quot-Where-not-equal-quot-not-working-in-script-load/m-p/570942#M212742</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm creating a table (let's say table "temp") and then concatenating on to temp using data from another source in my script load. In the concatenate() load, I use a where clause to tell QV not to pick up any rows where there is a "Total" string of any sort in column 1 (using where &amp;lt;&amp;gt; '*Total*'). My script looks like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; some data...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;From source1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(Temp)&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Additional data...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;From source2&lt;/P&gt;&lt;P&gt;WHERE Field1 &amp;lt;&amp;gt; '*Total*';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For some reason, the script is ALWAYS loading the "Total" rows. If I change it to&amp;nbsp; &lt;EM style="color: #ff9900;"&gt;WHERE Field1 = '*Total*'&lt;/EM&gt; the NONE of the line items from source2 will load. Any ideas why this is the case?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Feb 2014 18:17:35 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-02-11T18:17:35Z</dc:date>
    <item>
      <title>"Where not equal" not working in script load</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Where-not-equal-quot-not-working-in-script-load/m-p/570942#M212742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm creating a table (let's say table "temp") and then concatenating on to temp using data from another source in my script load. In the concatenate() load, I use a where clause to tell QV not to pick up any rows where there is a "Total" string of any sort in column 1 (using where &amp;lt;&amp;gt; '*Total*'). My script looks like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; some data...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;From source1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(Temp)&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Additional data...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;From source2&lt;/P&gt;&lt;P&gt;WHERE Field1 &amp;lt;&amp;gt; '*Total*';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For some reason, the script is ALWAYS loading the "Total" rows. If I change it to&amp;nbsp; &lt;EM style="color: #ff9900;"&gt;WHERE Field1 = '*Total*'&lt;/EM&gt; the NONE of the line items from source2 will load. Any ideas why this is the case?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Feb 2014 18:17:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Where-not-equal-quot-not-working-in-script-load/m-p/570942#M212742</guid>
      <dc:creator />
      <dc:date>2014-02-11T18:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: "Where not equal" not working in script load</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Where-not-equal-quot-not-working-in-script-load/m-p/570943#M212743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;From source2&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE not Field1 like '*Total*';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Feb 2014 18:20:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Where-not-equal-quot-not-working-in-script-load/m-p/570943#M212743</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2014-02-11T18:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: "Where not equal" not working in script load</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Where-not-equal-quot-not-working-in-script-load/m-p/570944#M212744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE not wildmatch(Field1, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; '*Total*'&lt;/SPAN&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Feb 2014 18:21:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Where-not-equal-quot-not-working-in-script-load/m-p/570944#M212744</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-02-11T18:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: "Where not equal" not working in script load</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Where-not-equal-quot-not-working-in-script-load/m-p/570945#M212745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow... so simple. I knew this was elementary. Thanks for the help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Feb 2014 18:25:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Where-not-equal-quot-not-working-in-script-load/m-p/570945#M212745</guid>
      <dc:creator />
      <dc:date>2014-02-11T18:25:25Z</dc:date>
    </item>
  </channel>
</rss>

