<?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: Table Box: Catching Null Values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Table-Box-Catching-Null-Values/m-p/584009#M1103590</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load your table like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;IF(STATUS= '-', 'TO BE SELECTED',STATUS) AS NewStatus&lt;/P&gt;&lt;P&gt;From Location&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Apr 2014 06:29:38 GMT</pubDate>
    <dc:creator>its_anandrjs</dc:creator>
    <dc:date>2014-04-01T06:29:38Z</dc:date>
    <item>
      <title>Table Box: Catching Null Values</title>
      <link>https://community.qlik.com/t5/QlikView/Table-Box-Catching-Null-Values/m-p/584006#M1103587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Table Box with many fields and one of those fields, STATUS, has different values like SELECTED, INSPECTED and there are also null values (showed as -). I'd like to change the null values in order to have something like 'TO BE SELECTED'. I believe I could do this by applying the following as a calculated dimension to STATUS: =IF(ISNULL(STATUS),'TO BE SELECTED',STATUS) but the thing is that I can't apply calculated dimensions to a Table Box...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could I do this? What solution do you recommend me to use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Apr 2014 04:14:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-Box-Catching-Null-Values/m-p/584006#M1103587</guid>
      <dc:creator>microwin88x</dc:creator>
      <dc:date>2014-04-01T04:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: Table Box: Catching Null Values</title>
      <link>https://community.qlik.com/t5/QlikView/Table-Box-Catching-Null-Values/m-p/584007#M1103588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;IF(Len(Trim(STATUS))=0,'TO BE SELECTED',STATUS) as STATUS,&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;FROM ......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-3155"&gt;NULL handling in QlikView&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Apr 2014 04:19:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-Box-Catching-Null-Values/m-p/584007#M1103588</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-01T04:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: Table Box: Catching Null Values</title>
      <link>https://community.qlik.com/t5/QlikView/Table-Box-Catching-Null-Values/m-p/584008#M1103589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do the same using below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script Side&lt;/P&gt;&lt;P&gt;Change your STATUS line as &lt;/P&gt;&lt;P&gt;IF(LEN(TRIM(Replace(STATUS,'-','')))=0,'TO BE SELECTED',STATUS) as STATUS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UI SIDE (in Listbox, Calculated Dimensions)&lt;/P&gt;&lt;P&gt;IF(LEN(TRIM(Replace(STATUS,'-','')))=0,'TO BE SELECTED',STATUS)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Apr 2014 06:18:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-Box-Catching-Null-Values/m-p/584008#M1103589</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-04-01T06:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Table Box: Catching Null Values</title>
      <link>https://community.qlik.com/t5/QlikView/Table-Box-Catching-Null-Values/m-p/584009#M1103590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load your table like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;IF(STATUS= '-', 'TO BE SELECTED',STATUS) AS NewStatus&lt;/P&gt;&lt;P&gt;From Location&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Apr 2014 06:29:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-Box-Catching-Null-Values/m-p/584009#M1103590</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-01T06:29:38Z</dc:date>
    </item>
  </channel>
</rss>

