<?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: Suppress 0 values in listbox in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904251#M314401</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this before. it does suppress the 0 values but I want it not to show the line represented by the 0 value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jun 2015 16:07:51 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-06-03T16:07:51Z</dc:date>
    <item>
      <title>Suppress 0 values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904247#M314397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a listbox which displays count of products for each line. I want to suppress the line which contain 0.&lt;/P&gt;&lt;P&gt;I am using the following formula to generate the count:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count({$ &amp;lt;&lt;/P&gt;&lt;P&gt;[Financial Year] = {2014},&lt;/P&gt;&lt;P&gt;[Financial Period] = {1,2}&lt;/P&gt;&lt;P&gt;&amp;gt;}[Product num])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count({$ &amp;lt;&lt;/P&gt;&lt;P&gt;[Financial Year] = {2013},&lt;/P&gt;&lt;P&gt;[Financial Period] = {11,12}&lt;/P&gt;&lt;P&gt;&amp;gt;}[Product num])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It generates the list as expected but I just want to suppress the 0 values How do I suppress the 0 values in listbox?&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 11:09:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904247#M314397</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-03T11:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress 0 values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904248#M314398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(&lt;/P&gt;&lt;P&gt;count({$ &amp;lt;&lt;/P&gt;&lt;P&gt;[Financial Year] = {2014},&lt;/P&gt;&lt;P&gt;[Financial Period] = {1,2}&lt;/P&gt;&lt;P&gt;&amp;gt;}[Product num])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count({$ &amp;lt;&lt;/P&gt;&lt;P&gt;[Financial Year] = {2013},&lt;/P&gt;&lt;P&gt;[Financial Period] = {11,12}&lt;/P&gt;&lt;P&gt;&amp;gt;}[Product num])&lt;/P&gt;&lt;P&gt;=0, Null(),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count({$ &amp;lt;&lt;/P&gt;&lt;P&gt;[Financial Year] = {2014},&lt;/P&gt;&lt;P&gt;[Financial Period] = {1,2}&lt;/P&gt;&lt;P&gt;&amp;gt;}[Product num])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count({$ &amp;lt;&lt;/P&gt;&lt;P&gt;[Financial Year] = {2013},&lt;/P&gt;&lt;P&gt;[Financial Period] = {11,12}&lt;/P&gt;&lt;P&gt;&amp;gt;}[Product num])&lt;/P&gt;&lt;P&gt;)&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>Wed, 03 Jun 2015 11:13:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904248#M314398</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-06-03T11:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress 0 values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904249#M314399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ranajit, maybe using a calculated expression, in the list box preoperties, instead of selecting the field, go to the bottom of that list and select &amp;lt;Expression&amp;gt;, you can use this expression:&lt;/P&gt;&lt;P&gt;Aggr(If(count({$ &amp;lt;[Financial Year] = {2014}, [Financial Period] = {1,2} &amp;gt;}[Product num]) +&lt;/P&gt;&lt;P&gt;&amp;nbsp; count({$ &amp;lt;[Financial Year] = {2013},[Financial Period] = {11,12}&amp;gt;}[Product num])&amp;lt;&amp;gt;0, [Product num]), [Product num])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not tested.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 11:16:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904249#M314399</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2015-06-03T11:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress 0 values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904250#M314400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No alternative but to calculate the amount twice:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Count({&amp;lt;[Financial Year] = {2014}, [Financial Period] = {1,2}&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp; + &amp;lt;[Financial Year] = {2013}, [Financial Period] = {11,12}&amp;gt;} [Product num]) &amp;lt;&amp;gt; 0, &lt;/P&gt;&lt;P&gt;Count({&amp;lt;[Financial Year] = {2014}, [Financial Period] = {1,2}&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp; + &amp;lt;[Financial Year] = {2013}, [Financial Period] = {11,12}&amp;gt;} [Product num]))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS I refactored your two terms into a set expression union '+'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 11:24:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904250#M314400</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-06-03T11:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress 0 values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904251#M314401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this before. it does suppress the 0 values but I want it not to show the line represented by the 0 value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 16:07:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904251#M314401</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-03T16:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress 0 values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904252#M314402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this before as well. It does supress the 0 but I do not want to show the entire line represented by the 0 value&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 16:10:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904252#M314402</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-03T16:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress 0 values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904253#M314403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried it but it did not work. Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 16:11:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904253#M314403</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-03T16:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress 0 values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904254#M314404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you have multiple expressions you will need the if statement containing the calculation of the condition in each, else they will continue to force a blank cell.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 16:35:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904254#M314404</guid>
      <dc:creator>tcullinane</dc:creator>
      <dc:date>2015-06-03T16:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress 0 values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904255#M314405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please share your qvw&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 19:21:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904255#M314405</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-06-03T19:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress 0 values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904256#M314406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't share the QVW, its for work. I'll make a qvw and upload it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 14:27:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Suppress-0-values-in-listbox/m-p/904256#M314406</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-04T14:27:50Z</dc:date>
    </item>
  </channel>
</rss>

