<?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 records with 'CLOSED' in text in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453431#M169172</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to select specific suppliers to list in pivot table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chart Properties &amp;gt;&amp;gt; Dimensions &amp;gt;&amp;gt; Used Dimensions = Supplier Name &amp;gt;&amp;gt; Enable Conditional Yes &amp;gt;&amp;gt; &lt;/P&gt;&lt;P&gt;Condition =&lt;/P&gt;&lt;P&gt;supplier_addr02 like '*NAMIBIA*'OR&lt;/P&gt;&lt;P&gt;supplier_addr02 like '*WINDHOEK*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result - does not list any. Do I have to include the "display supplier name" somehow?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll appreciate assistance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 May 2013 08:52:10 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-05-14T08:52:10Z</dc:date>
    <item>
      <title>Exclude records with 'CLOSED' in text</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453425#M169166</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;I need to exclude all account names with 'CLOSED' typed into the account descripion. I cannot find the function to exclude e.g. NOT LIKE equivalent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will appreciate a tip or 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 May 2013 13:46:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453425#M169166</guid>
      <dc:creator />
      <dc:date>2013-05-13T13:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records with 'CLOSED' in text</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453426#M169167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use either:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;where not wildmatch(account, '*CLOSED*')&lt;/SPAN&gt;&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;&lt;SPAN style="font-family: 'courier new', courier;"&gt;account NOT LIKE '*CLOSED*'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-ROb&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 May 2013 13:56:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453426#M169167</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-05-13T13:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records with 'CLOSED' in text</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453427#M169168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;[account names]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from tabletest&lt;/P&gt;&lt;P&gt;where not &lt;SPAN style="font-family: 'courier new', courier;"&gt;wildmatch(&lt;/SPAN&gt;[account names]&lt;SPAN style="font-family: 'courier new', courier;"&gt;, '*CLOSED*')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 May 2013 13:59:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453427#M169168</guid>
      <dc:creator />
      <dc:date>2013-05-13T13:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records with 'CLOSED' in text</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453428#M169169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And if you need a case-sensitive match try &lt;EM&gt;where substringcount(account, 'CLOSED')=0&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 May 2013 13:59:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453428#M169169</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-05-13T13:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records with 'CLOSED' in text</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453429#M169170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 May 2013 14:10:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453429#M169170</guid>
      <dc:creator />
      <dc:date>2013-05-13T14:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records with 'CLOSED' in text</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453430#M169171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Mon, May 13, 2013 at 3:00 PM, Gysbert Wassenaar &amp;lt;qcwebmaster@qlik.com&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 May 2013 14:17:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453430#M169171</guid>
      <dc:creator />
      <dc:date>2013-05-13T14:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records with 'CLOSED' in text</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453431#M169172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to select specific suppliers to list in pivot table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chart Properties &amp;gt;&amp;gt; Dimensions &amp;gt;&amp;gt; Used Dimensions = Supplier Name &amp;gt;&amp;gt; Enable Conditional Yes &amp;gt;&amp;gt; &lt;/P&gt;&lt;P&gt;Condition =&lt;/P&gt;&lt;P&gt;supplier_addr02 like '*NAMIBIA*'OR&lt;/P&gt;&lt;P&gt;supplier_addr02 like '*WINDHOEK*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result - does not list any. Do I have to include the "display supplier name" somehow?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll appreciate assistance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 08:52:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453431#M169172</guid>
      <dc:creator />
      <dc:date>2013-05-14T08:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records with 'CLOSED' in text</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453432#M169173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The conditional display option for dimensions will show/hide the entire dimension. It does not filter dimension values. You can filter field values in a listbox by clicking on the magnifying glass icon and entering a search string. See the example below which filters Product where the name contains 'pp' or 'an'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="41034" alt="comm81950.png" class="jive-image-thumbnail jive-image" src="https://community.qlik.com/legacyfs/online/41034_comm81950.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For your supplier_addr02 field you can try (*NAMIBIA*|*WINDHOEK*) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 09:00:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453432#M169173</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-05-14T09:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records with 'CLOSED' in text</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453433#M169174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let me re-phrase my question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I want to sort supplier names based on a specific selection for a pivot table output ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Can I somehow create the selection in the current sheet; or&lt;/P&gt;&lt;P&gt;2. Do I have to sort outside Qlikview and import to work from?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 10:30:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453433#M169174</guid>
      <dc:creator />
      <dc:date>2013-05-14T10:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records with 'CLOSED' in text</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453434#M169175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create a calculated dimension that will filter values like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;if(wildmatch(supplier_addr02, '*NAMIBIA*', &lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;'*WINDHOEK*'), &lt;SPAN style="color: #737373; font-family: 'courier new', courier; background-color: #ffffff;"&gt;supplier_addr02&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 13:48:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records-with-CLOSED-in-text/m-p/453434#M169175</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-05-14T13:48:09Z</dc:date>
    </item>
  </channel>
</rss>

