<?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 How to create a report on fields with NULL entries in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-create-a-report-on-fields-with-NULL-entries/m-p/245276#M1205677</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I create a pivot table with all the needed fields and do see that some row contains NULL entry on a particular field or column. Now I just want the system to filter for just the NULL entries. The goal is to have a report showing all record with NULL entry in field X.&lt;/P&gt;&lt;P&gt;Any suggestions? Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Mar 2010 20:18:58 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-03-01T20:18:58Z</dc:date>
    <item>
      <title>How to create a report on fields with NULL entries</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-report-on-fields-with-NULL-entries/m-p/245276#M1205677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I create a pivot table with all the needed fields and do see that some row contains NULL entry on a particular field or column. Now I just want the system to filter for just the NULL entries. The goal is to have a report showing all record with NULL entry in field X.&lt;/P&gt;&lt;P&gt;Any suggestions? Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Mar 2010 20:18:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-report-on-fields-with-NULL-entries/m-p/245276#M1205677</guid>
      <dc:creator />
      <dc:date>2010-03-01T20:18:58Z</dc:date>
    </item>
    <item>
      <title>How to create a report on fields with NULL entries</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-report-on-fields-with-NULL-entries/m-p/245277#M1205678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i don't think you can do selections on nulls in Qlikview. The way i've solved this is on the load script, i make sure to put some text value on these null ones (i.e. MISSING, EMPTY, '&amp;lt;empty string&amp;gt;', etc. ). This way i can filter by them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Mar 2010 00:50:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-report-on-fields-with-NULL-entries/m-p/245277#M1205678</guid>
      <dc:creator />
      <dc:date>2010-03-02T00:50:28Z</dc:date>
    </item>
    <item>
      <title>How to create a report on fields with NULL entries</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-report-on-fields-with-NULL-entries/m-p/245278#M1205679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you please send me the load syntax you use for filling "empty" or "null" entries. Thank you so much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Mar 2010 15:17:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-report-on-fields-with-NULL-entries/m-p/245278#M1205679</guid>
      <dc:creator />
      <dc:date>2010-03-02T15:17:47Z</dc:date>
    </item>
    <item>
      <title>How to create a report on fields with NULL entries</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-report-on-fields-with-NULL-entries/m-p/245279#M1205680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;NULL values can be controlled in a couple of ways. I use&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;If(Len(Field) = 0, 'Null Field', 'Otherwise')&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;to control null values. There is a function IsNull() which allows you to know when the value of field is null. It has some erratic behaviour in certain versions and hardware though... &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Mar 2010 15:29:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-report-on-fields-with-NULL-entries/m-p/245279#M1205680</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-03-02T15:29:28Z</dc:date>
    </item>
    <item>
      <title>How to create a report on fields with NULL entries</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-report-on-fields-with-NULL-entries/m-p/245280#M1205681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;if(isnull(Field),'null',Field) as Field&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Will replace all null values with 'null' for the Field. There is other functions (something like nullinterpret etc) that might do the trick but this is the one i use. You can also use this function in your pivot table expressions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Mar 2010 15:52:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-report-on-fields-with-NULL-entries/m-p/245280#M1205681</guid>
      <dc:creator>blaise</dc:creator>
      <dc:date>2010-03-02T15:52:00Z</dc:date>
    </item>
  </channel>
</rss>

