<?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 records from list in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/exclude-records-from-list/m-p/186556#M50600</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;&lt;BR /&gt;LOAD *&lt;BR /&gt;FROM [1.CSV] (ansi, txt, delimiter is ';', no labels, msq)&lt;BR /&gt;WHERE @6 &amp;lt;&amp;gt; 'X1' AND @6 &amp;lt;&amp;gt; 'X2' AND @6 &amp;lt;&amp;gt; 'X3'&lt;BR /&gt;;&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to add a lot of @6 values .. can i put them in a inline .. and then excluded them? how can i do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Mar 2010 07:44:28 GMT</pubDate>
    <dc:creator>amien</dc:creator>
    <dc:date>2010-03-19T07:44:28Z</dc:date>
    <item>
      <title>exclude records from list</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-records-from-list/m-p/186556#M50600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;&lt;BR /&gt;LOAD *&lt;BR /&gt;FROM [1.CSV] (ansi, txt, delimiter is ';', no labels, msq)&lt;BR /&gt;WHERE @6 &amp;lt;&amp;gt; 'X1' AND @6 &amp;lt;&amp;gt; 'X2' AND @6 &amp;lt;&amp;gt; 'X3'&lt;BR /&gt;;&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to add a lot of @6 values .. can i put them in a inline .. and then excluded them? how can i do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Mar 2010 07:44:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-records-from-list/m-p/186556#M50600</guid>
      <dc:creator>amien</dc:creator>
      <dc:date>2010-03-19T07:44:28Z</dc:date>
    </item>
    <item>
      <title>exclude records from list</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-records-from-list/m-p/186557#M50601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Amien&lt;/P&gt;&lt;P&gt;You can do this by creating an inline table of @6 values that should be included, or @6 values that should not be included,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;ExcludeValues:&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[ @6Exclude&lt;BR /&gt;X1&lt;BR /&gt;X2&lt;BR /&gt;X3];&lt;BR /&gt;YourTableName:&lt;BR /&gt;LOAD *&lt;BR /&gt;FROM [1.CSV] (ansi, txt, delimiter is ';', no labels, msq)&lt;BR /&gt;WHERE NOT Exists(@6Exclude, @6);&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;You could also do it the other way around by creating an inline table of values to INCLUDE, and the only change there would be that you should remove the word NOT from the WHERE clause in your final load statement.&lt;/P&gt;&lt;P&gt;Good luck,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Mar 2010 08:14:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-records-from-list/m-p/186557#M50601</guid>
      <dc:creator />
      <dc:date>2010-03-19T08:14:47Z</dc:date>
    </item>
    <item>
      <title>exclude records from list</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-records-from-list/m-p/186558#M50602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;great solution .. works..&lt;/P&gt;&lt;P&gt;is it also possible to use this one in an expression? 'exists' doenst exists as function.&lt;/P&gt;&lt;P&gt;and how can i not get the found value as return .. but another value from the inline?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&amp;lt;pre&amp;gt;&lt;BR /&gt;[ @6Exclude, @6Exclude2X1, Test&lt;BR /&gt;X2, Test&lt;BR /&gt;X3, Test];&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;so .. the expression shouldnt return true or false .. but the value Test.. &lt;BR /&gt;&lt;BR /&gt;(mind that these are two different question) .. &lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Mar 2010 13:26:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-records-from-list/m-p/186558#M50602</guid>
      <dc:creator>amien</dc:creator>
      <dc:date>2010-03-19T13:26:10Z</dc:date>
    </item>
    <item>
      <title>exclude records from list</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-records-from-list/m-p/186559#M50603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;For the expression I would use INDEX which is similar to FINDSTR, CHARINDEX etc, something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Index(GetFieldSelections("ColName"),'Dim1')&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;The above expression will give you a return number &amp;gt; 0 if Dim1 has been selected in the field ColName, equally, you could put anything else instead of GetFieldSelections("ColName") in this expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm afraid I don't understand you second question, where are you wanting to show the value "Test" is this in the load script (and therefore into a table) or is it in a chart?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Mar 2010 14:15:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-records-from-list/m-p/186559#M50603</guid>
      <dc:creator />
      <dc:date>2010-03-19T14:15:31Z</dc:date>
    </item>
    <item>
      <title>exclude records from list</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-records-from-list/m-p/186560#M50604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Mar 2010 19:06:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-records-from-list/m-p/186560#M50604</guid>
      <dc:creator>amien</dc:creator>
      <dc:date>2010-03-19T19:06:53Z</dc:date>
    </item>
  </channel>
</rss>

