<?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: Line Chart Stops with 0's in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Line-Chart-Stops-with-0-s/m-p/23223#M786076</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like this was just a case of needing to uncheck suppress zero-values on the presentation tab. I thought I had tried this before but I guess not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Feb 2018 17:31:47 GMT</pubDate>
    <dc:creator>greend21</dc:creator>
    <dc:date>2018-02-28T17:31:47Z</dc:date>
    <item>
      <title>Line Chart Stops with 0's</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-Stops-with-0-s/m-p/23218#M786067</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 recreated an excel line chart in Qlikview. I have full accumulation on but the one line stops because there are 0's in the data. Is there a way to get it to continue like the excel version?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Excel:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/194782_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QV: Notice the purple line stops because 8, 9, and 10 have 0 in the source data.&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/194789_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-Stops-with-0-s/m-p/23218#M786067</guid>
      <dc:creator>greend21</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart Stops with 0's</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-Stops-with-0-s/m-p/23219#M786068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share your expression your are using may be you can do something like in your script. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Field1, Field2, IF(Value = 0, Previous(Value), Value) AS yourExprValue&lt;/P&gt;&lt;P&gt;From yoursource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can share your script we can look into it. Not tried but you can do something like above. Please share more information if possible. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Feb 2018 21:04:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-Stops-with-0-s/m-p/23219#M786068</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-02-27T21:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart Stops with 0's</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-Stops-with-0-s/m-p/23220#M786069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;num&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;If&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;isnull&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;OCMonthPctColl&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)), '0', &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;OCMonthPctColl&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)), '#,##0%')&amp;nbsp; This is what is currently there and is what I tried to use to replace a possible null value.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;If I used the previous value it would continue to show an upward trend on the line when it should show flat instead.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Also, I just remembered I figured out Qlikview is treating these as missing, not null.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Feb 2018 21:10:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-Stops-with-0-s/m-p/23220#M786069</guid>
      <dc:creator>greend21</dc:creator>
      <dc:date>2018-02-27T21:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart Stops with 0's</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-Stops-with-0-s/m-p/23221#M786070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share some sample data to look into please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Feb 2018 22:03:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-Stops-with-0-s/m-p/23221#M786070</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-02-27T22:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart Stops with 0's</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-Stops-with-0-s/m-p/23222#M786072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here you go. Not sure if it makes a difference but my load uses a crosstable function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Table1:&lt;BR /&gt; CrossTable(OCMonthNum, OCMonthPct, 3)&lt;BR /&gt; LOAD OCMonthPlacedCompany,&lt;BR /&gt; OCMoOverallPerformance,&lt;BR /&gt; SysCd,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Same]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[1 Month]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[2 Months]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[3 Months]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[4 Months]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[5 Months]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[6 Months]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[7 Months]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[8 Months]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[9 Months]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[10+ Months]&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;FROM &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(vQVDPath)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;OCMonths.qvd (qvd)&lt;BR /&gt; Where 1 = 1&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2018 13:00:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-Stops-with-0-s/m-p/23222#M786072</guid>
      <dc:creator>greend21</dc:creator>
      <dc:date>2018-02-28T13:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart Stops with 0's</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-Stops-with-0-s/m-p/23223#M786076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like this was just a case of needing to uncheck suppress zero-values on the presentation tab. I thought I had tried this before but I guess not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2018 17:31:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-Stops-with-0-s/m-p/23223#M786076</guid>
      <dc:creator>greend21</dc:creator>
      <dc:date>2018-02-28T17:31:47Z</dc:date>
    </item>
  </channel>
</rss>

