<?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: Exclude blank cells in data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348607#M494600</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;Elaborating on my example above&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;Table:&lt;BR /&gt;LOAD *,&lt;BR /&gt;FROM File.qvd (qvd)&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;&lt;SPAN style="font-family: monospace; white-space: pre; background-color: #ffffff;"&gt;WHERE Len(Field); // greater than zero means true, so load all where Field is not null&lt;/SPAN&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use any other SQL function, but it will depend on your ODBC driver and your database manager.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Mar 2012 16:51:45 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2012-03-12T16:51:45Z</dc:date>
    <item>
      <title>Exclude blank cells in data</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348600#M494593</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;What is the syntax to exclude null values in my data?&amp;nbsp; The field is called DFLOW?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 16:36:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348600#M494593</guid>
      <dc:creator>Sunil_Kenth</dc:creator>
      <dc:date>2012-03-12T16:36:39Z</dc:date>
    </item>
    <item>
      <title>Exclude blank cells in data</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348601#M494594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is in my load script by the way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 16:37:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348601#M494594</guid>
      <dc:creator>Sunil_Kenth</dc:creator>
      <dc:date>2012-03-12T16:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude blank cells in data</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348602#M494595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I prefer to use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Len(Field) = 0, 'Null', Field) AS Field&lt;/P&gt;&lt;P&gt;... // source here&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 16:38:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348602#M494595</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-03-12T16:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude blank cells in data</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348603#M494596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Miguel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks but I want to exlude the blank values and not specify them as a field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where DFLOW &amp;lt;&amp;gt; ‘ ‘ .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 16:42:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348603#M494596</guid>
      <dc:creator>Sunil_Kenth</dc:creator>
      <dc:date>2012-03-12T16:42:59Z</dc:date>
    </item>
    <item>
      <title>Exclude blank cells in data</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348604#M494597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The you should do right that. Use a where close after the Load statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 16:44:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348604#M494597</guid>
      <dc:creator>jvitantonio</dc:creator>
      <dc:date>2012-03-12T16:44:15Z</dc:date>
    </item>
    <item>
      <title>Exclude blank cells in data</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348605#M494598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks but i need to know the exact syntax to write?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 16:46:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348605#M494598</guid>
      <dc:creator>Sunil_Kenth</dc:creator>
      <dc:date>2012-03-12T16:46:35Z</dc:date>
    </item>
    <item>
      <title>Exclude blank cells in data</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348606#M494599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load * from youtfile.qvd (qvd)&lt;/P&gt;&lt;P&gt;Where DFLOW &amp;lt;&amp;gt; ' ';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 16:51:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348606#M494599</guid>
      <dc:creator>jvitantonio</dc:creator>
      <dc:date>2012-03-12T16:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude blank cells in data</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348607#M494600</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;Elaborating on my example above&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;Table:&lt;BR /&gt;LOAD *,&lt;BR /&gt;FROM File.qvd (qvd)&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;&lt;SPAN style="font-family: monospace; white-space: pre; background-color: #ffffff;"&gt;WHERE Len(Field); // greater than zero means true, so load all where Field is not null&lt;/SPAN&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use any other SQL function, but it will depend on your ODBC driver and your database manager.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 16:51:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-blank-cells-in-data/m-p/348607#M494600</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-03-12T16:51:45Z</dc:date>
    </item>
  </channel>
</rss>

