<?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: Exclude some records when loading script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079065#M939629</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use&lt;/P&gt;&lt;P&gt;sampl:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;cust as CustomerTab&lt;/P&gt;&lt;P&gt;Resident sales&lt;/P&gt;&lt;P&gt;where not exists ([Name], [age],[salary]);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Feb 2016 09:10:02 GMT</pubDate>
    <dc:creator>Chanty4u</dc:creator>
    <dc:date>2016-02-09T09:10:02Z</dc:date>
    <item>
      <title>Exclude some records when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079059#M939623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to exclude vales when loading script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know i can use match() but i want to exclude 3 values. is there any negative function for match&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 09:04:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079059#M939623</guid>
      <dc:creator>anuradhaa</dc:creator>
      <dc:date>2016-02-09T09:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude some records when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079060#M939624</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;use a WHERE NOT EXISTS() clause in the LOAD to exclude those?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 09:05:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079060#M939624</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-02-09T09:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude some records when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079061#M939625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kindly Give example to explain your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 09:07:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079061#M939625</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2016-02-09T09:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude some records when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079062#M939626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TableName:&lt;/P&gt;&lt;P&gt;Load Customer, Sales, Date, InvoiceNumber From SalesTable&lt;/P&gt;&lt;P&gt;Where Not Match(Customer, 'A','B','C');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like above..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 09:07:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079062#M939626</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-02-09T09:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude some records when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079063#M939627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To exclude values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where Match(field, 'ValuetoExclude') = 0&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where Not(Match(field, 'ValuetoExclude'))&amp;nbsp;&amp;nbsp; // if that is more readable&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 09:08:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079063#M939627</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2016-02-09T09:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude some records when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079064#M939628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you have only 3 values than use the &lt;STRONG&gt;where clause&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;like &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;A,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;B,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;C,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;D&lt;/P&gt;&lt;P&gt;from&lt;/P&gt;&lt;P&gt;table&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;where A='value1' or A='value2' or A='value3'&lt;/STRONG&gt; ;&lt;/P&gt;&lt;P&gt;or if you have multiple fields than&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;where A='value1' and B='value2' and&amp;nbsp; C='value3'&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 09:09:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079064#M939628</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2016-02-09T09:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude some records when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079065#M939629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use&lt;/P&gt;&lt;P&gt;sampl:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;cust as CustomerTab&lt;/P&gt;&lt;P&gt;Resident sales&lt;/P&gt;&lt;P&gt;where not exists ([Name], [age],[salary]);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 09:10:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079065#M939629</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-02-09T09:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude some records when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079066#M939630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use not Match()&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 09:10:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079066#M939630</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-09T09:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude some records when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079067#M939631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Always use Mixmatch() so even if there is any upper/lower casing differences then also it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Qlikview is case sensitive.&amp;nbsp; &lt;STRONG&gt;A&lt;/STRONG&gt; and &lt;STRONG&gt;a&lt;/STRONG&gt; is not the same in Qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&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 MixMatch(Customer, 'A','B','C');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Hope this helps you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Jagan.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 03:52:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-some-records-when-loading-script/m-p/1079067#M939631</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2016-02-10T03:52:37Z</dc:date>
    </item>
  </channel>
</rss>

