<?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: Hide null values, but show zero values in chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Hide-null-values-but-show-zero-values-in-chart/m-p/1667043#M728366</link>
    <description>&lt;P&gt;You were absolutely right. I was using some aggregation and therefore turning values into zeros. Thank you.&lt;/P&gt;</description>
    <pubDate>Sun, 19 Jan 2020 06:00:34 GMT</pubDate>
    <dc:creator>farinaznz</dc:creator>
    <dc:date>2020-01-19T06:00:34Z</dc:date>
    <item>
      <title>Hide null values, but show zero values in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-null-values-but-show-zero-values-in-chart/m-p/1665406#M728363</link>
      <description>&lt;P&gt;I have a chart like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="qv.PNG" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/26811iFE5EBE35D9FA46C2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="qv.PNG" alt="qv.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I want to keep the green, yellow, and pink lines as they are because their values are NULL before '01', '04', and '07', respectively. (the dimension ordering is correct! please don't mind the irregularity) but I want to show that the red line becomes zero after '11' and continues being zero!&amp;nbsp;&lt;/P&gt;&lt;P&gt;"Suppress when value is null" and "Suppress zero values" are checked. when I uncheck "Suppress zero values" I get this result:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="qv2.PNG" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/26812iA224747C6D56200A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="qv2.PNG" alt="qv2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;so the problem is that QV treats the NULL values as Zeros. How can I prevent this from happening? How can I show when the red line (with actual zero values in the data) is zero but not show zeros when the values of other lines (with NULL values in the data) are missing?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:18:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-null-values-but-show-zero-values-in-chart/m-p/1665406#M728363</guid>
      <dc:creator>farinaznz</dc:creator>
      <dc:date>2024-11-16T19:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Hide null values, but show zero values in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-null-values-but-show-zero-values-in-chart/m-p/1665491#M728364</link>
      <description>&lt;P&gt;You could make the line transparent when the value is null. Uncheck "Suppress zero values", then make the line color = if(NOT IsNull(&amp;lt;expression&amp;gt;), argb(0,0,0,0)).&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 16:30:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-null-values-but-show-zero-values-in-chart/m-p/1665491#M728364</guid>
      <dc:creator>gavinlaird</dc:creator>
      <dc:date>2020-01-14T16:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Hide null values, but show zero values in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-null-values-but-show-zero-values-in-chart/m-p/1665544#M728365</link>
      <description>&lt;P&gt;Qlik treats null as null,&amp;nbsp; my guess is that you have created a zero value.&amp;nbsp; If you are using aggregation functions then the aggregation will ingnore the null values. You will see that&amp;nbsp; SUM(Null()) = 0.&lt;/P&gt;&lt;P&gt;To get around this problem you could try to write your expression like this:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;If( NumericCount(Field), Sum(Field), NULL())&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can also read&amp;nbsp;Henric_Cronström&amp;nbsp; answer in an earlier post:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/QlikView-App-Development/Set-analysis-returns-0-for-null-records/m-p/1075185/highlight/true#M358777" target="_self"&gt;Re: Set analysis returns 0, for null records&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 19:04:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-null-values-but-show-zero-values-in-chart/m-p/1665544#M728365</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-01-14T19:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Hide null values, but show zero values in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-null-values-but-show-zero-values-in-chart/m-p/1667043#M728366</link>
      <description>&lt;P&gt;You were absolutely right. I was using some aggregation and therefore turning values into zeros. Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jan 2020 06:00:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-null-values-but-show-zero-values-in-chart/m-p/1667043#M728366</guid>
      <dc:creator>farinaznz</dc:creator>
      <dc:date>2020-01-19T06:00:34Z</dc:date>
    </item>
  </channel>
</rss>

