<?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: Null Values Handle in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770985#M1032829</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thank you for you help,&lt;/P&gt;&lt;P&gt;in my file, If i don't know which field having null and which row having null at that time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i replace that nullvalue with NULL string.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Jan 2015 05:11:39 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-01-28T05:11:39Z</dc:date>
    <item>
      <title>Null Values Handle</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770982#M1032826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a CSV file, in that file i have some NULL fields and as well as some NULL value i want to display a string '*NULL*'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i don't know which field having NULL &amp;amp; where are the&amp;nbsp; NULL Values .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While i am loading the CSV file in QV, At that time i need to load String(NULL) in to QV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How Can i do this Please Help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2015 07:48:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770982#M1032826</guid>
      <dc:creator />
      <dc:date>2015-01-27T07:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Null Values Handle</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770983#M1032827</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;You can try this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;ColA, ColB;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ColA, ColB&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A,1588&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C,1251&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T2:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;ColA, ColB,&lt;/P&gt;&lt;P&gt;if(Len(ColB)=0, '*NULL*', ColB) as [New Column]&lt;/P&gt;&lt;P&gt;Resident T1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2015 07:54:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770983#M1032827</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2015-01-27T07:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Null Values Handle</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770984#M1032828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set NullValue = 'NULL' ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;Load A,B from x.csv;&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2015 07:55:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770984#M1032828</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-01-27T07:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Null Values Handle</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770985#M1032829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thank you for you help,&lt;/P&gt;&lt;P&gt;in my file, If i don't know which field having null and which row having null at that time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i replace that nullvalue with NULL string.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 05:11:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770985#M1032829</guid>
      <dc:creator />
      <dc:date>2015-01-28T05:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Null Values Handle</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770986#M1032830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's automatic, each time there is a Null the system replace it with the value (Text) "Null"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 07:49:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770986#M1032830</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-01-28T07:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: Null Values Handle</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770987#M1032831</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;I tried&lt;/P&gt;&lt;P&gt;Set NullValue = 'NULL' ;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;/P&gt;&lt;P class="Code"&gt;Load A,B from x.csv;&lt;/P&gt;&lt;P&gt;But it is not working.&lt;/P&gt;&lt;P&gt;i added my qvw file please check&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 09:49:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770987#M1032831</guid>
      <dc:creator />
      <dc:date>2015-01-29T09:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Null Values Handle</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770988#M1032832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately the load inline uses blanks and not null, take a look to the document&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 10:08:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770988#M1032832</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-01-29T10:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: Null Values Handle</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770989#M1032833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried Anand's solution ? It should work perfectly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are not sure about the columns which are having null &lt;/P&gt;&lt;P&gt;. Just use expression for all the columns.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(Len(ColB)=0, '*NULL*', ColB) as [New Column]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(Len(ColC)=0, '*NULL*', ColC) as [New Column2]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(Len(ColD)=0, '*NULL*', ColD) as [New Column3]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;.&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(Len(ColN)=0, '*NULL*', ColN) as [New ColumnN]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; 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-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Resident T1;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 12:11:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770989#M1032833</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-29T12:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: Null Values Handle</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770990#M1032834</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;I will have a Mapping table for NULL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; Map_Nulls:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;MAPPING&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;NULL&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(),&lt;BR /&gt; '&amp;lt;NULL&amp;gt;'&amp;nbsp; // This could be UNKNOWN or whatever&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Autogenerate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; 1; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then before your main load script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have&lt;/P&gt;&lt;P&gt;Map&lt;/P&gt;&lt;P&gt;* // Or specify fields you'll like to apply the null values to&lt;/P&gt;&lt;P&gt;Using Map_Nulls ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way you will catch all the NULL values in the data.&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;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 12:29:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Values-Handle/m-p/770990#M1032834</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2015-01-29T12:29:46Z</dc:date>
    </item>
  </channel>
</rss>

