<?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: missing value as 0 in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/missing-value-as-0/m-p/1140472#M898233</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you unchecked 'Suppress Zero-Values' and 'Suppress Missing' on the presentation tab?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jul 2016 18:20:46 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2016-07-25T18:20:46Z</dc:date>
    <item>
      <title>missing value as 0</title>
      <link>https://community.qlik.com/t5/QlikView/missing-value-as-0/m-p/1140471#M898232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/132372_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see above, there are missing values. but I would like to present all the dates in there so that I can observe time based progression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are no missing date values in the table and even though the count is Null the date is taking up one row since I used this code in script.&lt;/P&gt;&lt;P&gt;QuartersMap:&amp;nbsp; &lt;/P&gt;&lt;P&gt;MAPPING LOAD&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;rowno() as Month,&amp;nbsp; &lt;/P&gt;&lt;P&gt;'Q' &amp;amp; Ceil (rowno()/3) as Quarter&amp;nbsp; &lt;/P&gt;&lt;P&gt;AUTOGENERATE (12);&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Temp:&amp;nbsp; &lt;/P&gt;&lt;P&gt;Load&amp;nbsp; &lt;/P&gt;&lt;P&gt;min([Complete Date]) as minDate,&amp;nbsp; &lt;/P&gt;&lt;P&gt;max([Complete Date]) as maxDate&amp;nbsp; &lt;/P&gt;&lt;P&gt;Resident Tasks;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Let varMinDate = Num(peek('minDate', 0, 'Temp'));&amp;nbsp; &lt;/P&gt;&lt;P&gt;Let varMaxDate = Num(peek('maxDate', 0, 'Temp'));&amp;nbsp; &lt;/P&gt;&lt;P&gt;DROP Table Temp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;TempCalendar:&amp;nbsp; &lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp; &lt;/P&gt;&lt;P&gt;$(varMinDate) + Iterno()-1 As Num,&amp;nbsp; &lt;/P&gt;&lt;P&gt;Date($(varMinDate) + IterNo() - 1) as TempDate&amp;nbsp; &lt;/P&gt;&lt;P&gt;AutoGenerate 1 While $(varMinDate) + IterNo() -1 &amp;lt;= $(varMaxDate);&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;MasterCalendar:&amp;nbsp; &lt;/P&gt;&lt;P&gt;Load&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; TempDate AS [Complete Date],&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; week(TempDate) As Week,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; Year(TempDate) As Year,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; Month(TempDate) As Month,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; Day(TempDate) As Day, &lt;/P&gt;&lt;P&gt; //Hour(TempDate) As Hour,&lt;/P&gt;&lt;P&gt; // Minute(TempDate) As Minute,&lt;/P&gt;&lt;P&gt; // Second(TempDate) As Second, &lt;/P&gt;&lt;P&gt;&amp;nbsp; ApplyMap('QuartersMap', month(TempDate), Null()) as Quarter,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; Week(weekstart(TempDate)) &amp;amp; '-' &amp;amp; WeekYear(TempDate) as WeekYear,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; WeekDay(TempDate) as WeekDay&amp;nbsp; &lt;/P&gt;&lt;P&gt;Resident TempCalendar&amp;nbsp; &lt;/P&gt;&lt;P&gt;Order By TempDate ASC;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Drop Table TempCalendar;&amp;nbsp; &lt;/P&gt;&lt;P&gt;--------------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used the same data for both table and chart. and in table I see all the dates.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/132373_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as you can see, even though values are missing it is still taking up a row for every date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the same with my chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help!! Thank you!! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&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/missing-value-as-0/m-p/1140471#M898232</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: missing value as 0</title>
      <link>https://community.qlik.com/t5/QlikView/missing-value-as-0/m-p/1140472#M898233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you unchecked 'Suppress Zero-Values' and 'Suppress Missing' on the presentation tab?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 18:20:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/missing-value-as-0/m-p/1140472#M898233</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-25T18:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: missing value as 0</title>
      <link>https://community.qlik.com/t5/QlikView/missing-value-as-0/m-p/1140473#M898234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Sunny!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you are amazing.... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 18:23:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/missing-value-as-0/m-p/1140473#M898234</guid>
      <dc:creator />
      <dc:date>2016-07-25T18:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: missing value as 0</title>
      <link>https://community.qlik.com/t5/QlikView/missing-value-as-0/m-p/1140474#M898235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/132363_Capture.PNG" style="height: 553px; width: 620px;" /&gt;Can you send us a sample qvw file for a quick look if possible ?&lt;/P&gt;&lt;P&gt;Did you uncheck (highlighted in Yellow in the bottom) this and tried ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 18:25:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/missing-value-as-0/m-p/1140474#M898235</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2016-07-25T18:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: missing value as 0</title>
      <link>https://community.qlik.com/t5/QlikView/missing-value-as-0/m-p/1140475#M898236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/98547"&gt;vishsaggi&lt;/A&gt;‌ thank you! this is exactly the way sunny answered it and it worked! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 18:52:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/missing-value-as-0/m-p/1140475#M898236</guid>
      <dc:creator />
      <dc:date>2016-07-25T18:52:09Z</dc:date>
    </item>
  </channel>
</rss>

