<?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 NULL values not being counted in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/NULL-values-not-being-counted/m-p/556247#M1135307</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Relating to the same tables on this thread: &lt;A _jive_internal="true" href="https://community.qlik.com/thread/95797"&gt;http://community.qlik.com/thread/95797&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Imagine I have a row with NULL value in Days Bucket column. This NULL value comes from an excel sheet with an empty cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So for my pivot table I have an option to show an extra column for NULL values of Days Bucket.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The bad thing is that in the Count([Days Bucket]) in the sub column for NULL Days Buckets it shows 0 even if there are some rows with empty(NULL) Days Bucket.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I fix this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Oct 2013 17:48:48 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-10-14T17:48:48Z</dc:date>
    <item>
      <title>NULL values not being counted</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values-not-being-counted/m-p/556247#M1135307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Relating to the same tables on this thread: &lt;A _jive_internal="true" href="https://community.qlik.com/thread/95797"&gt;http://community.qlik.com/thread/95797&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Imagine I have a row with NULL value in Days Bucket column. This NULL value comes from an excel sheet with an empty cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So for my pivot table I have an option to show an extra column for NULL values of Days Bucket.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The bad thing is that in the Count([Days Bucket]) in the sub column for NULL Days Buckets it shows 0 even if there are some rows with empty(NULL) Days Bucket.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I fix this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Oct 2013 17:48:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values-not-being-counted/m-p/556247#M1135307</guid>
      <dc:creator />
      <dc:date>2013-10-14T17:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values not being counted</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values-not-being-counted/m-p/556248#M1135308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Miguel&lt;BR /&gt;You can apply a value to the null columns on your script that does not affect your calculations (either 0 or or a letter) so when you count those values the NULLS will be included and when you do other operations with the field (like sum or avg), it won't affect the result&lt;BR /&gt;Something like If(IsNull([Days Bucket]),0,[Days Bucket]) as [Days Bucket]&lt;BR /&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pablo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Oct 2013 17:55:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values-not-being-counted/m-p/556248#M1135308</guid>
      <dc:creator />
      <dc:date>2013-10-14T17:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values not being counted</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values-not-being-counted/m-p/556249#M1135309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure what you're trying to do. Perhaps it's as simple as disabling the Suppress Zero Values on the Presentation tab of the properties window. Or if you want another expression to count the nulls: nullcount([Days Bucket]).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps if you posted an example document with enough sample data to demonstrate the issue somebody can create a solution for you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2013 06:12:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values-not-being-counted/m-p/556249#M1135309</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-10-15T06:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values not being counted</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values-not-being-counted/m-p/556250#M1135310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Count(if(IsNull([Days Bucket]), 1, [Days Bucket]))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if this is a good solution, but it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't understand why QlikView don't do this automatically... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2013 08:16:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values-not-being-counted/m-p/556250#M1135310</guid>
      <dc:creator />
      <dc:date>2013-10-15T08:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values not being counted</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values-not-being-counted/m-p/556251#M1135311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Instead of Count(if(IsNull([Days Bucket]), 1, [Days Bucket]))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;just did&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Count(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Full Text Reason Code&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;because there are no empty columns in &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Full Text Reason Code&lt;/SPAN&gt;.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2013 09:44:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values-not-being-counted/m-p/556251#M1135311</guid>
      <dc:creator />
      <dc:date>2013-10-15T09:44:52Z</dc:date>
    </item>
  </channel>
</rss>

