<?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 Ignoring zero and null values in chart when considering smallest values for a chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Ignoring-zero-and-null-values-in-chart-when-considering-smallest/m-p/688204#M249271</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need a chart to show yield by smallest values ignoring zero. I've tried suppressing zero/null values, but it seems to choose them first, then suppress them. For example, if I want the smallest 6 while suppressing zeros and nulls, it will get those 6, then if 2 of those 6 are zero or null, it will hide those 2 and show only 4. I need it to ignore those and grab the next 2 non-zero/non-null values if they exist and display 6. I've also tried negating the expression and taking the largest, but even with formatting the number to hide the negative sign, it still shows negative percentages on the axis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made a small sample document to demonstrate. Are there any workarounds for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Sep 2014 21:24:32 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-09-24T21:24:32Z</dc:date>
    <item>
      <title>Ignoring zero and null values in chart when considering smallest values for a chart</title>
      <link>https://community.qlik.com/t5/QlikView/Ignoring-zero-and-null-values-in-chart-when-considering-smallest/m-p/688204#M249271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need a chart to show yield by smallest values ignoring zero. I've tried suppressing zero/null values, but it seems to choose them first, then suppress them. For example, if I want the smallest 6 while suppressing zeros and nulls, it will get those 6, then if 2 of those 6 are zero or null, it will hide those 2 and show only 4. I need it to ignore those and grab the next 2 non-zero/non-null values if they exist and display 6. I've also tried negating the expression and taking the largest, but even with formatting the number to hide the negative sign, it still shows negative percentages on the axis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made a small sample document to demonstrate. Are there any workarounds for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 21:24:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignoring-zero-and-null-values-in-chart-when-considering-smallest/m-p/688204#M249271</guid>
      <dc:creator />
      <dc:date>2014-09-24T21:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Ignoring zero and null values in chart when considering smallest values for a chart</title>
      <link>https://community.qlik.com/t5/QlikView/Ignoring-zero-and-null-values-in-chart-when-considering-smallest/m-p/688205#M249272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(rank(-(Sum([Quantity Out])/sum([Quantity In])),0)&amp;lt;=3,sum([Quantity Out])/sum([Quantity In]))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Turn off dimension limits, but turn on Suppress Zero-Values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;BR /&gt;SKG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 21:41:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignoring-zero-and-null-values-in-chart-when-considering-smallest/m-p/688205#M249272</guid>
      <dc:creator>simenkg</dc:creator>
      <dc:date>2014-09-24T21:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: Ignoring zero and null values in chart when considering smallest values for a chart</title>
      <link>https://community.qlik.com/t5/QlikView/Ignoring-zero-and-null-values-in-chart-when-considering-smallest/m-p/688206#M249273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({&amp;lt;[Quantity Out]-={0},[Quantity In]-={0} &amp;gt;}[Quantity Out])/sum({&amp;lt;[Quantity Out]-={0},[Quantity In]-={0} &amp;gt;}[Quantity In])&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 21:43:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignoring-zero-and-null-values-in-chart-when-considering-smallest/m-p/688206#M249273</guid>
      <dc:creator>phaneendra_kunc</dc:creator>
      <dc:date>2014-09-24T21:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Ignoring zero and null values in chart when considering smallest values for a chart</title>
      <link>https://community.qlik.com/t5/QlikView/Ignoring-zero-and-null-values-in-chart-when-considering-smallest/m-p/688207#M249274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. Worked perfectly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2014 13:52:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignoring-zero-and-null-values-in-chart-when-considering-smallest/m-p/688207#M249274</guid>
      <dc:creator />
      <dc:date>2014-09-25T13:52:39Z</dc:date>
    </item>
  </channel>
</rss>

