<?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 show the Blank value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-show-the-Blank-value/m-p/993429#M977981</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to exchange the original null value for company in the excel file for a 'N/D' value in the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can solve it by modifying the script a bit:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD If(Len(Company)=0,'N/D',Company) As Company, Cost;&lt;/P&gt;&lt;P&gt;LOAD Company,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cost&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;\\india.eclerx.com\ctrxdata\ARLM_R_DATA\Karim.Khan\Desktop\Blank_Value.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that to check the null values, I use the len function. I've been fooled a couple of times using comparisons like isnull(field) or field = '' and the best way I've found to deal with that is with len(field) = 0 &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Aug 2015 14:19:09 GMT</pubDate>
    <dc:creator>alex_millan</dc:creator>
    <dc:date>2015-08-25T14:19:09Z</dc:date>
    <item>
      <title>How to show the Blank value</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-the-Blank-value/m-p/993427#M977979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; In My Excel data there are 6 fields are there out of that 1 filed is blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I am applying the filter and by selecting the Blank filter it showing some Data.But when I upload the Same xls File in Qlik View.Blank Field is getting skipped.How to show that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;K K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 14:13:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-the-Blank-value/m-p/993427#M977979</guid>
      <dc:creator>Karim_Khan</dc:creator>
      <dc:date>2015-08-25T14:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to show the Blank value</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-the-Blank-value/m-p/993428#M977980</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;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD If(Isnull(Company) or Company='','No Data',Company) as Company, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cost&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Blank_Value.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 14:19:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-the-Blank-value/m-p/993428#M977980</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2015-08-25T14:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to show the Blank value</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-the-Blank-value/m-p/993429#M977981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to exchange the original null value for company in the excel file for a 'N/D' value in the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can solve it by modifying the script a bit:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD If(Len(Company)=0,'N/D',Company) As Company, Cost;&lt;/P&gt;&lt;P&gt;LOAD Company,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cost&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;\\india.eclerx.com\ctrxdata\ARLM_R_DATA\Karim.Khan\Desktop\Blank_Value.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that to check the null values, I use the len function. I've been fooled a couple of times using comparisons like isnull(field) or field = '' and the best way I've found to deal with that is with len(field) = 0 &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 14:19:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-the-Blank-value/m-p/993429#M977981</guid>
      <dc:creator>alex_millan</dc:creator>
      <dc:date>2015-08-25T14:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to show the Blank value</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-the-Blank-value/m-p/993430#M977982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tnx&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 14:28:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-the-Blank-value/m-p/993430#M977982</guid>
      <dc:creator>Karim_Khan</dc:creator>
      <dc:date>2015-08-25T14:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to show the Blank value</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-the-Blank-value/m-p/993431#M977983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Tnx&lt;/SPAN&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 14:28:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-the-Blank-value/m-p/993431#M977983</guid>
      <dc:creator>Karim_Khan</dc:creator>
      <dc:date>2015-08-25T14:28:11Z</dc:date>
    </item>
  </channel>
</rss>

