<?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 in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181972#M382940</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have other expressions in the field where you are not using the same if function which you use for this particular expression? Also what version of QlikView are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Sep 2016 13:49:10 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2016-09-26T13:49:10Z</dc:date>
    <item>
      <title>null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181955#M382923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to know how to delete null values of an expression not a dimension..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:08:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181955#M382923</guid>
      <dc:creator>master_student</dc:creator>
      <dc:date>2016-09-26T09:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181956#M382924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you be little bit more specific...Are you looking to hide a column when it null ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:10:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181956#M382924</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-09-26T09:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181957#M382925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try creating a field like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(isnull([you dimension goes here]), 'null', [you dimension goes here]) as MyDimensionWithNullValues,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in expression use something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Sum({$&amp;lt;MyDimensionWithNullValues &amp;lt;&amp;gt; {'null'}&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;D.A. MB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:11:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181957#M382925</guid>
      <dc:creator>miguelbraga</dc:creator>
      <dc:date>2016-09-26T09:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181958#M382926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. If you don't want to mess with the script do as following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Sum({$&amp;lt;[you dimension goes here] &amp;lt;&amp;gt; null()&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. If that don't solve your problem check the Surpress Null Values in all dimension that you have -&amp;gt; Dimensions Tab &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/138646_pastedImage_2.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;3. If that don't for you create an expression like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(isnull([you dimension goes here]), 0,1) * [your expression goes here]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then check in expression Supress Zero Values -&amp;gt; Presentation Tab &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;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/138644_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;Do you need more solutions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:13:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181958#M382926</guid>
      <dc:creator>miguelbraga</dc:creator>
      <dc:date>2016-09-26T09:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181959#M382927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(Expression &amp;lt;&amp;gt; 0, Expression)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:14:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181959#M382927</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-09-26T09:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181960#M382928</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;Select Supress Null values option in Presentation tab?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:14:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181960#M382928</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2016-09-26T09:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181961#M382929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Why not simply suppress when value is null from Presentation Tab?&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:16:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181961#M382929</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-09-26T09:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181962#M382930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:24:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181962#M382930</guid>
      <dc:creator>master_student</dc:creator>
      <dc:date>2016-09-26T09:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181963#M382931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you trying this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(YourExpession = 0, 0, 1)&amp;nbsp; From Layout Conditional / What?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:28:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181963#M382931</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-09-26T09:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181964#M382932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is a filed DATEE that has this format, i need to put in in the expression section :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/138648_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to delete '-' values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:35:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181964#M382932</guid>
      <dc:creator>master_student</dc:creator>
      <dc:date>2016-09-26T09:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181965#M382933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you saw or tried any of my solutions above?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:38:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181965#M382933</guid>
      <dc:creator>miguelbraga</dc:creator>
      <dc:date>2016-09-26T09:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181966#M382934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share me your application&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:38:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181966#M382934</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-09-26T09:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181967#M382935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. My expression is '= DATEE' I tried =If(DATEE &amp;lt;&amp;gt; 0, DATEE) / if (is not null (DATEE)) &lt;/P&gt;&lt;P&gt;but it didn't work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:43:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181967#M382935</guid>
      <dc:creator>master_student</dc:creator>
      <dc:date>2016-09-26T09:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181968#M382936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of zero try Null()&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:45:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181968#M382936</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-09-26T09:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181969#M382937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no. it doesn't work &lt;/P&gt;&lt;P&gt;If(DATEE &amp;lt;&amp;gt; Null() , DATEE)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:48:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181969#M382937</guid>
      <dc:creator>master_student</dc:creator>
      <dc:date>2016-09-26T09:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181970#M382938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Clearly you didn't read my solution but here it goes...&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;=If(isnull(DATEE), null(), DATEE)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should give you the ability to see where the null is and only then surpress it in the Presentation Tab &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;D.A. MB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:48:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181970#M382938</guid>
      <dc:creator>miguelbraga</dc:creator>
      <dc:date>2016-09-26T09:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181971#M382939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think so why is not working, Finally last chance from script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sheet1:&lt;/P&gt;&lt;P&gt;LOAD * FROM .....Excel&amp;nbsp; &lt;STRONG style="color: #ff0000;"&gt;Where&lt;/STRONG&gt; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG style="color: #ff0000;"&gt;DATEE&lt;/STRONG&gt;&lt;/SPAN&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 09:58:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181971#M382939</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-09-26T09:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1181972#M382940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have other expressions in the field where you are not using the same if function which you use for this particular expression? Also what version of QlikView are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 13:49:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1181972#M382940</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-09-26T13:49:10Z</dc:date>
    </item>
  </channel>
</rss>

