<?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 like in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752547#M473517</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you script&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;...&lt;/P&gt;&lt;P&gt;FROM ...&lt;/P&gt;&lt;P&gt;Where ABC &amp;lt;&amp;gt; 'XYZ';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make sure that the XYZ is exactly written as the value in your data row (case sensitive) and check if there are space characters before or after the cell content which you can avoid with trim()&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Nov 2014 11:29:57 GMT</pubDate>
    <dc:creator>danieloberbilli</dc:creator>
    <dc:date>2014-11-03T11:29:57Z</dc:date>
    <item>
      <title>NOT like</title>
      <link>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752541#M473511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing a small problem in not like statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one Column and in that column I dont want specific Row can anybody guide me in this regard.&lt;/P&gt;&lt;P&gt;Column Name: ABC&lt;/P&gt;&lt;P&gt;Row not wanted: XYZ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 10:27:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752541#M473511</guid>
      <dc:creator />
      <dc:date>2014-11-03T10:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: NOT like</title>
      <link>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752542#M473512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are various ways to achieve this, can you be more specific on where you want to exclude the data- in the script, in a chart...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the front-end, the simplest way is to add a list box for field ABC, select value XYZ, then right-click and select "Select Excluded" from the list of options.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 10:33:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752542#M473512</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2014-11-03T10:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: NOT like</title>
      <link>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752543#M473513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are using SQL then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select &lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;Where not ABC like 'XYZ';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using qlik load, you can use wildmatch function so:&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;From&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;Where &lt;/P&gt;&lt;P&gt;Wildmatch(ABC, 'XYZ')=0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 10:33:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752543#M473513</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-11-03T10:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: NOT like</title>
      <link>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752544#M473514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Write like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;ABC&lt;/P&gt;&lt;P&gt;From Location&lt;/P&gt;&lt;P&gt;Where ABC &amp;lt;&amp;gt; 'XYZ'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume XYZ is the content in the fields ABC like this you avoid the row to be loaded in load script &lt;/P&gt;&lt;P&gt;If have any sample file then provide that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 10:34:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752544#M473514</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-11-03T10:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: NOT like</title>
      <link>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752545#M473515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everybody. Every mentioned Soution is vaild and it works but the thing is the associated data from other columns are still there and altogether the number of rows are not reduced which eventually have to. But the solution from Mr.Colin Albert was effective and reduced the over all count as welll. Can I do something with the script and get the desired result. I have connected the excel file and Datawarehouse. ABC column is in Excel file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 11:12:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752545#M473515</guid>
      <dc:creator />
      <dc:date>2014-11-03T11:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: NOT like</title>
      <link>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752546#M473516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Usman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD ABC,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Column1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Column2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Column3&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Book1.xlsx (ooxml, embedded labels, table is Sheet1)&lt;/P&gt;&lt;P&gt;Where not WildMatch(ABC,'XYZ')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will helpful for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-- Regards,&lt;/P&gt;&lt;P&gt;Vishal Waghole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 11:24:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752546#M473516</guid>
      <dc:creator>VishalWaghole</dc:creator>
      <dc:date>2014-11-03T11:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: NOT like</title>
      <link>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752547#M473517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you script&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;...&lt;/P&gt;&lt;P&gt;FROM ...&lt;/P&gt;&lt;P&gt;Where ABC &amp;lt;&amp;gt; 'XYZ';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make sure that the XYZ is exactly written as the value in your data row (case sensitive) and check if there are space characters before or after the cell content which you can avoid with trim()&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 11:29:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752547#M473517</guid>
      <dc:creator>danieloberbilli</dc:creator>
      <dc:date>2014-11-03T11:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: NOT like</title>
      <link>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752548#M473518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Vishal. It worked. I was using the same statement but with other format like Where not wildmatch(ABC,'*XYZ*') anyways thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 11:35:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NOT-like/m-p/752548#M473518</guid>
      <dc:creator />
      <dc:date>2014-11-03T11:35:25Z</dc:date>
    </item>
  </channel>
</rss>

