<?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: unlogical issue in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/unlogical-issue/m-p/334191#M123227</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;Not really unlogical. In SQL and in Qlikview, null (meaning unknown or undefined) is not the same an empty string, which has a defined state. For an empty string, you can use len() as in the previous post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or if you want to make the blanks genuinly null, use &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;Hope that helps&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jul 2012 12:39:00 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2012-07-04T12:39:00Z</dc:date>
    <item>
      <title>unlogical issue</title>
      <link>https://community.qlik.com/t5/QlikView/unlogical-issue/m-p/334189#M123225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;i have an excel sheet and i load the data from it in a qlikview document&lt;/P&gt;&lt;P&gt;there's some data fields in the excel sheet don't have values (blank fields)&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;TABLE border="1" cellpadding="3" cellspacing="0" class="jiveBorder" style="width: 30%; border: 1px solid #000000;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;Number&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;Name&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;&lt;BR /&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;x&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;y&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the first name is empty&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in qlikview i want to use this expression&lt;/P&gt;&lt;P&gt;if ( Name = Null() , 0 , 1 ) in a straight table&lt;/P&gt;&lt;P&gt;but the result of the expression for all rows is 1&lt;/P&gt;&lt;P&gt;that's meaning this empty field isn't null &lt;/P&gt;&lt;P&gt;i tried also&lt;/P&gt;&lt;P&gt;if ( Name = ' ' , 0 , 1 )&lt;/P&gt;&lt;P&gt;but the same result &lt;/P&gt;&lt;P&gt;So, what's the value may be taken in this field???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2012 12:24:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/unlogical-issue/m-p/334189#M123225</guid>
      <dc:creator />
      <dc:date>2012-07-04T12:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: unlogical issue</title>
      <link>https://community.qlik.com/t5/QlikView/unlogical-issue/m-p/334190#M123226</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(len(trim(Name)) =0, 0, 1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2012 12:31:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/unlogical-issue/m-p/334190#M123226</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-07-04T12:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: unlogical issue</title>
      <link>https://community.qlik.com/t5/QlikView/unlogical-issue/m-p/334191#M123227</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;Not really unlogical. In SQL and in Qlikview, null (meaning unknown or undefined) is not the same an empty string, which has a defined state. For an empty string, you can use len() as in the previous post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or if you want to make the blanks genuinly null, use &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;Hope that helps&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2012 12:39:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/unlogical-issue/m-p/334191#M123227</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2012-07-04T12:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: unlogical issue</title>
      <link>https://community.qlik.com/t5/QlikView/unlogical-issue/m-p/334192#M123228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Further, the expression &lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;Name = Null() &lt;/SPAN&gt; will never work. NULL cannot be used in comparisons. See more on &lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/docs/DOC-3155"&gt;http://community.qlik.com/docs/DOC-3155&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2012 18:24:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/unlogical-issue/m-p/334192#M123228</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2012-07-04T18:24:14Z</dc:date>
    </item>
  </channel>
</rss>

