<?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: How to Exclude field values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858007#M300521</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thabiso,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you actually trying to remove the word 'Letta' from the name OR exclude names that contain the word 'Letta' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Apr 2015 14:41:16 GMT</pubDate>
    <dc:creator>awhitfield</dc:creator>
    <dc:date>2015-04-17T14:41:16Z</dc:date>
    <item>
      <title>How to Exclude field values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858001#M300515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i want to Exclude some of the Field values how do i solve that, maybe with the Like Function?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Name&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Surname&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Age&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;John&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Deer&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;29&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Moses&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Fall&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;32&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Letta Theressa&lt;/TD&gt;&lt;TD&gt;Joses&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Hallmark Letta&lt;/TD&gt;&lt;TD&gt;Moak&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how do i take out all the Letta in my Table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2015 13:24:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858001#M300515</guid>
      <dc:creator />
      <dc:date>2015-04-17T13:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to Exclude field values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858002#M300516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load * Where Wildmatch(Name, 'Letta') =0;&lt;/P&gt;&lt;P&gt;SELECT * from MyTable;&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>Fri, 17 Apr 2015 13:28:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858002#M300516</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-04-17T13:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to Exclude field values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858003#M300517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where do you want to exclude them? In a front end chart or listbox or do you want to exclude them when you load the data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the load script you'd use the Wildmatch function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Surname,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Age&lt;/P&gt;&lt;P&gt;FROM ...&lt;/P&gt;&lt;P&gt;WHERE NOT Wildmatch(Name, '*Letta*');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2015 13:29:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858003#M300517</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-04-17T13:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to Exclude field values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858004#M300518</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;Thanks for Quick Response, i want to do it on my Front end&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2015 13:30:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858004#M300518</guid>
      <dc:creator />
      <dc:date>2015-04-17T13:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to Exclude field values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858005#M300519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/105468"&gt;Set analysis-Include excluded values&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/79369"&gt;Set Analysis To exclude an item&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2015 13:30:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858005#M300519</guid>
      <dc:creator>anat</dc:creator>
      <dc:date>2015-04-17T13:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to Exclude field values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858006#M300520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If Name is a dimension then:&lt;/P&gt;&lt;P&gt;Use edit and write : If(wildmatch(Name, 'Letta')&amp;gt;0, null(), Name) and check the box "Suppress null values"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2015 13:35:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858006#M300520</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-04-17T13:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to Exclude field values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858007#M300521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thabiso,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you actually trying to remove the word 'Letta' from the name OR exclude names that contain the word 'Letta' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2015 14:41:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Exclude-field-values/m-p/858007#M300521</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2015-04-17T14:41:16Z</dc:date>
    </item>
  </channel>
</rss>

