<?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 replace null values with &amp;quot;missing&amp;quot; in Water Cooler</title>
    <link>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608774#M2634</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have to show "missing" instead of null in the fields with null values in the final table obtained after concatenation. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Mar 2014 10:41:47 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-03-06T10:41:47Z</dc:date>
    <item>
      <title>replace null values with "missing"</title>
      <link>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608774#M2634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have to show "missing" instead of null in the fields with null values in the final table obtained after concatenation. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 10:41:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608774#M2634</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-06T10:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: replace null values with "missing"</title>
      <link>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608775#M2635</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;This is best done at reload time with script like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD ....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(IsNull(MyField), 'MISSING', MyField) As MyField,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(You can use If(Len(MyField) = 0, .. ) instead - it will detect nulls and empty strings).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 10:47:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608775#M2635</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2014-03-06T10:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: replace null values with "missing"</title>
      <link>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608776#M2636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;NullAsValue FieldA;&lt;/P&gt;&lt;P&gt;Set NullValue = 'Missing' ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;Load FieldA,B from &amp;lt;&amp;gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 10:48:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608776#M2636</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-03-06T10:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: replace null values with "missing"</title>
      <link>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608777#M2637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhinav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use this script:&lt;/P&gt;&lt;P&gt;If(IsNull(Your_Field), 'missing', Your_Field) as Field,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;AS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 10:57:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608777#M2637</guid>
      <dc:creator>amit_saini</dc:creator>
      <dc:date>2014-03-06T10:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: replace null values with "missing"</title>
      <link>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608778#M2638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace;"&gt;Hi Abhinav,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace;"&gt;These helps me!. hope it will apply you to.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace;"&gt;MissingMap:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace;"&gt;MAPPING LOAD &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace;"&gt;null(), 'MISSING!' AutoGenerate 1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace; font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace; font-size: 10pt; line-height: 1.5em;"&gt;MAP FieldName USING MissingMap;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: tahoma, 'Trebuchet MS', lucida, helvetica, sans-serif;"&gt;//The mapping will be applied when the field value is created. So how do we apply the map to an already existing table? //We make a copy of the table. That will cause the latest mapping to be applied&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace; font-size: 10pt; line-height: 1.5em;"&gt;NewTable:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace;"&gt;NoConcatenate&amp;nbsp;&amp;nbsp; // This is important! We want a new table!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace;"&gt;LOAD * RESIDENT Orders;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace;"&gt;DROP TABLE Orders;&amp;nbsp; //&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555544; font-family: 'Courier New', Courier, monospace;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 11:23:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608778#M2638</guid>
      <dc:creator>sunilkumarqv</dc:creator>
      <dc:date>2014-03-06T11:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: replace null values with "missing"</title>
      <link>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608779#M2639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhinav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apart from all the options suggested above , you can do it in front end by going to Properties -- Presentation tab and giving the Null and Missing symbols as desired.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But of course doing it from the script is always the best option. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 11:28:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608779#M2639</guid>
      <dc:creator />
      <dc:date>2014-03-06T11:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: replace null values with "missing"</title>
      <link>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608780#M2640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot everyone.It worked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 11:30:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608780#M2640</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-06T11:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: replace null values with "missing"</title>
      <link>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608781#M2641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhinav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would suggest you to implement in the chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex:- straight table ( see the image attached) instead of the word 'missing' you can give your own word.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Vinoth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 11:31:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/replace-null-values-with-quot-missing-quot/m-p/608781#M2641</guid>
      <dc:creator />
      <dc:date>2014-03-06T11:31:38Z</dc:date>
    </item>
  </channel>
</rss>

