<?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 Exclude many values in where statement? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclude-many-values-in-where-statement/m-p/360373#M133820</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if it will work, but try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from MyTable where NOT FieldName in ('x','y','z');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Mar 2012 15:50:41 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-03-20T15:50:41Z</dc:date>
    <item>
      <title>Exclude many values in where statement?</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-many-values-in-where-statement/m-p/360370#M133817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a good way of excluding several values in a 'where' statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to do something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;from MyTable where NOT FieldName='x','y','z';&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is, I want to exclude the values x,y,z in my load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br&lt;/P&gt;&lt;P&gt;cristian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2012 15:23:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-many-values-in-where-statement/m-p/360370#M133817</guid>
      <dc:creator>mr_novice</dc:creator>
      <dc:date>2012-03-20T15:23:31Z</dc:date>
    </item>
    <item>
      <title>Exclude many values in where statement?</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-many-values-in-where-statement/m-p/360371#M133818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi, there are two ways i guess: 1. from MyTable where NOT FieldName='x' and FieldName='y' and&amp;nbsp; FieldName='z';&lt;/P&gt;&lt;P&gt; or 2.&amp;nbsp; from MyTable where FieldName&amp;lt;&amp;gt;'x' and FieldName&amp;lt;&amp;gt;'y' and FieldName&amp;lt;&amp;gt;'z';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2012 15:46:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-many-values-in-where-statement/m-p/360371#M133818</guid>
      <dc:creator>michael_maeuser</dc:creator>
      <dc:date>2012-03-20T15:46:13Z</dc:date>
    </item>
    <item>
      <title>Exclude many values in where statement?</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-many-values-in-where-statement/m-p/360372#M133819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, so there's no way to avoid repeating the fieldname? I mean I have like ten values to exclude so that would men repeating the field name ten times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br&lt;/P&gt;&lt;P&gt;cristian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2012 15:47:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-many-values-in-where-statement/m-p/360372#M133819</guid>
      <dc:creator>mr_novice</dc:creator>
      <dc:date>2012-03-20T15:47:56Z</dc:date>
    </item>
    <item>
      <title>Exclude many values in where statement?</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-many-values-in-where-statement/m-p/360373#M133820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if it will work, but try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from MyTable where NOT FieldName in ('x','y','z');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2012 15:50:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-many-values-in-where-statement/m-p/360373#M133820</guid>
      <dc:creator />
      <dc:date>2012-03-20T15:50:41Z</dc:date>
    </item>
    <item>
      <title>Exclude many values in where statement?</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-many-values-in-where-statement/m-p/360374#M133821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Tahnk you but it doenst seem to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br&lt;/P&gt;&lt;P&gt;cristian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2012 15:57:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-many-values-in-where-statement/m-p/360374#M133821</guid>
      <dc:creator>mr_novice</dc:creator>
      <dc:date>2012-03-20T15:57:45Z</dc:date>
    </item>
    <item>
      <title>Exclude many values in where statement?</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-many-values-in-where-statement/m-p/360375#M133822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, you can create a table with the values you want to exclude, then you use a where not exists command:.&lt;/P&gt;&lt;P&gt;For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exclusion:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exclude&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; y&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; z&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FieldName&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; b&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; c&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; d&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; y&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; z&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; a&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;where not Exists( Exclude, FieldName)&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2012 18:43:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-many-values-in-where-statement/m-p/360375#M133822</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2012-03-20T18:43:05Z</dc:date>
    </item>
  </channel>
</rss>

