<?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: How to display the null values for a column in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022814#M938639</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alternative would be to do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RangeSum(Count([Date Received]) + NullCount([Date Received]))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Feb 2016 12:34:53 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2016-02-01T12:34:53Z</dc:date>
    <item>
      <title>How to display the null values for a column</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022810#M938635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear QVExperts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table with column, [Date Received] with total 117 rows&lt;/P&gt;&lt;P&gt;Out of which, two rows are null.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to display the Count([Date Received]) &lt;/P&gt;&lt;P&gt;without null as 115 rows&lt;/P&gt;&lt;P&gt;with null as 2 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2016 12:15:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022810#M938635</guid>
      <dc:creator />
      <dc:date>2016-02-01T12:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the null values for a column</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022811#M938636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do a count of Null using NullCount() function:&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;NullCount([Date Received])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2016 12:22:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022811#M938636</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-01T12:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the null values for a column</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022812#M938637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;without Null&lt;/STRONG&gt;= count(if(len(trim([Date Recieved]))&amp;gt;0,&lt;SPAN style="font-size: 13.3333px;"&gt;[Date Recieved]&lt;/SPAN&gt;))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Null&lt;/STRONG&gt; = count(if(len(trim([Date Recieved]))=0,&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;[Date Recieved]&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2016 12:27:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022812#M938637</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-02-01T12:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the null values for a column</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022813#M938638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sasi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below code will be help ful to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check:&lt;/P&gt;&lt;P&gt;LOAD sum(if(isnull(Customer)=0,1,0)) as&amp;nbsp; notnullvalue,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(if(isnull(Customer)=0,0,1)) as&amp;nbsp; nullvalue&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;D&gt;&lt;/D&gt;&lt;/P&gt;&lt;P&gt;(txt, codepage is 1252, embedded labels, delimiter is ',', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Sreeman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2016 12:28:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022813#M938638</guid>
      <dc:creator />
      <dc:date>2016-02-01T12:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the null values for a column</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022814#M938639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alternative would be to do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RangeSum(Count([Date Received]) + NullCount([Date Received]))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2016 12:34:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022814#M938639</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-01T12:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the null values for a column</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022815#M938640</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;Check this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3093"&gt;Finding NULL&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2016 12:47:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022815#M938640</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-02-01T12:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the null values for a column</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022816#M938641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks All for your valued solutions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Feb 2016 08:32:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-the-null-values-for-a-column/m-p/1022816#M938641</guid>
      <dc:creator />
      <dc:date>2016-02-03T08:32:52Z</dc:date>
    </item>
  </channel>
</rss>

