<?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: Blank in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Blank/m-p/1082256#M921047</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(len(trim(field_name))&amp;gt;0,&lt;SPAN style="font-size: 13.3333px;"&gt;field_name) as &lt;SPAN style="font-size: 13.3333px;"&gt;field_name&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//if you eliminate the complete data associated with the null values then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;from table_name&lt;/P&gt;&lt;P&gt;where &lt;SPAN style="font-size: 13.3333px;"&gt;len(trim(field_name))&amp;gt;0&lt;/SPAN&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Apr 2016 09:08:11 GMT</pubDate>
    <dc:creator>avinashelite</dc:creator>
    <dc:date>2016-04-22T09:08:11Z</dc:date>
    <item>
      <title>Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Blank/m-p/1082253#M921041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have aexcel under which there is a column (Field) Product, which has some blank values , &lt;/P&gt;&lt;P&gt;Now in the script iam writing the below code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;match( Product, ='','') as Product,&amp;nbsp; so that the null (Blank values ) showed be suppressed, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But after reloading iam geting 0 , &lt;/P&gt;&lt;P&gt;My result shoul be like where ever there is blank it should not show anything , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the script iam writing the script wrong ? PLease suggest me &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank/m-p/1082253#M921041</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Blank/m-p/1082254#M921044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this instead:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Len(Trim(Field)) &amp;gt; 0, Field) as Field&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2016 09:00:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank/m-p/1082254#M921044</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-22T09:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Blank/m-p/1082255#M921046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or if you want to handle the null values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can add this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set NULLINTERPRET ='';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the load script &lt;/P&gt;&lt;P&gt;you can use &lt;/P&gt;&lt;P&gt;if(isnull(FieldName) , expression1, expression2) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2016 09:06:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank/m-p/1082255#M921046</guid>
      <dc:creator>kkkumar82</dc:creator>
      <dc:date>2016-04-22T09:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Blank/m-p/1082256#M921047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(len(trim(field_name))&amp;gt;0,&lt;SPAN style="font-size: 13.3333px;"&gt;field_name) as &lt;SPAN style="font-size: 13.3333px;"&gt;field_name&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//if you eliminate the complete data associated with the null values then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;from table_name&lt;/P&gt;&lt;P&gt;where &lt;SPAN style="font-size: 13.3333px;"&gt;len(trim(field_name))&amp;gt;0&lt;/SPAN&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2016 09:08:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank/m-p/1082256#M921047</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2016-04-22T09:08:11Z</dc:date>
    </item>
  </channel>
</rss>

