<?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: Value NULL in set analysis? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530510#M198316</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I could also make script :&lt;/P&gt;&lt;P&gt;NullAsValue CostoVen;&lt;/P&gt;&lt;P&gt;SET NullValue = 0; &lt;/P&gt;&lt;P&gt;but I cannot modify the script because of file.qvd very great that would not be adjourned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Jan 2014 20:06:58 GMT</pubDate>
    <dc:creator>antoniotiman</dc:creator>
    <dc:date>2014-01-17T20:06:58Z</dc:date>
    <item>
      <title>Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530502#M198308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;How can I set value NULL&amp;nbsp; in set analysis?&lt;/P&gt;&lt;P&gt;sum({&amp;lt;CostoVen={&lt;STRONG style="color: #ff0000;"&gt;NULL&lt;/STRONG&gt;}&amp;gt;} Sales)&amp;nbsp;&amp;nbsp; [convert from &lt;STRONG&gt;sum(if(IsNull(CostoVen),Sales)]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Tanks You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 18:55:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530502#M198308</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2014-01-17T18:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530503#M198309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm guessing NULL would be the opposite of "is something":&lt;/P&gt;&lt;P&gt;sum({$-&amp;lt;CostoVen={'*'}&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;sum({$-&amp;lt;CostoVen={'?*'}&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;where $- means "not" and '*' or '?*' means "something"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 19:05:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530503#M198309</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-01-17T19:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530504#M198310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&amp;nbsp; I'm also going to try sum({$-&amp;lt;CostoVen={"%*%"}&amp;gt;} Sales).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 19:32:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530504#M198310</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2014-01-17T19:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530505#M198311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could also make a null flag in your script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Len(CostoVen) = 0, 1, 0) as NullFlag&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Than your expression would look like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;Nullflag={1}&amp;gt;} Sales)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 19:33:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530505#M198311</guid>
      <dc:creator>jpapador</dc:creator>
      <dc:date>2014-01-17T19:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530506#M198312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure what you're trying to do with the percent (%) signs.&amp;nbsp; In QlikView the wildcards are asterisk (*) for zero or more characters and question mark (?) for one single character.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 19:34:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530506#M198312</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-01-17T19:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530507#M198313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sum({$-&amp;lt;CostoVen={"%*%"}&amp;gt;} Sales) is OK.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 19:46:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530507#M198313</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2014-01-17T19:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530508#M198314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Antonio&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=sum&lt;SPAN class="GINGER_SOFTWARE_mark"&gt;(&lt;/SPAN&gt;&lt;SPAN class="GINGER_SOFTWARE_mark"&gt;{&amp;lt;&lt;/SPAN&gt;CostoVen=&lt;SPAN class="GINGER_SOFTWARE_mark"&gt;{&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;""&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;}&lt;SPAN class="GINGER_SOFTWARE_mark"&gt;&amp;gt;}&lt;/SPAN&gt; Sales) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Kiran&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 19:54:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530508#M198314</guid>
      <dc:creator>kiranmanoharrode</dc:creator>
      <dc:date>2014-01-17T19:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530509#M198315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use the expression as below&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Sum({&amp;lt;CostoVen&lt;STRONG&gt;-={"*"}&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;gt;} Sales) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 19:55:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530509#M198315</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2014-01-17T19:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530510#M198316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I could also make script :&lt;/P&gt;&lt;P&gt;NullAsValue CostoVen;&lt;/P&gt;&lt;P&gt;SET NullValue = 0; &lt;/P&gt;&lt;P&gt;but I cannot modify the script because of file.qvd very great that would not be adjourned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 20:06:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530510#M198316</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2014-01-17T20:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530511#M198317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;I have already tried. It doesn't work.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 20:09:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530511#M198317</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2014-01-17T20:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530512#M198318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, my &lt;STRONG&gt;sum({$-&amp;lt;CostoVen={"%*%"}&amp;gt;} Sales)&lt;/STRONG&gt; it doesn't work,&lt;/P&gt;&lt;P&gt;but your suggestion doesn't even work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 20:28:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530512#M198318</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2014-01-17T20:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530513#M198319</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 like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Sum({&amp;lt;CostoVen&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;EM&gt;-={"*"}&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;gt;} Sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hope it helps&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 20:31:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530513#M198319</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2014-01-17T20:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530514#M198320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please post a sample .qvw&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-1290"&gt;Preparing examples for Upload - Reduction and Data Scrambling&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 20:32:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530514#M198320</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-01-17T20:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530515#M198321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mayil,&lt;/P&gt;&lt;P&gt;I have already tried. It doesn't work.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 20:39:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530515#M198321</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2014-01-17T20:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530516#M198322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think that this is possible with set analysis.&amp;nbsp; The only way would be to have a 1/0 flag defined in the load script as &lt;A href="https://community.qlik.com/qlik-users/114259"&gt;jpapador&lt;/A&gt; mentioned earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason why this isn't possible with SA is that set analysis basically functions like static user selections.&amp;nbsp; See my explanation in this thread: &lt;A _jive_internal="true" href="https://community.qlik.com/message/450877#450877"&gt;http://community.qlik.com/message/450877#450877&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since QV doesn't allow selections of NULL values, it's not possible to create a set expression for NULL values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 20:40:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530516#M198322</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-17T20:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530517#M198323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually &lt;A href="https://community.qlik.com/qlik-users/22198"&gt;Jeffrey Vermeire&lt;/A&gt;, it is possible to count null values using set analysis like the following:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;=count({$-&amp;lt;Value={'?*'}&amp;gt;}Field)&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see attached file for an example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 20:45:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530517#M198323</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-01-17T20:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530518#M198324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I&amp;nbsp; recommend reading the excellent paper "Null and Nothing" by &lt;A href="https://community.qlik.com/qlik-users/4003"&gt;Henric Cronström&lt;/A&gt; available at &lt;A href="https://community.qlik.com/docs/DOC-3155"&gt;NULL handling in QlikView&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the section "NULLs and missing values in Set analysis", HIC shows three ways to select null in Set Analysis. Here's one way :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;sum({1-&amp;lt;CostoVen={*}&amp;gt;} Sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 20:46:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530518#M198324</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2014-01-17T20:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530519#M198325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jeffrey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've used the solution that &lt;A href="https://community.qlik.com/qlik-users/140755"&gt;Celambarasan Adhimulam&lt;/A&gt; showed here many times, and it worked.&lt;/P&gt;&lt;P&gt;I don't disagree though that adding flags in script makes things simpler.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 20:49:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530519#M198325</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-17T20:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530520#M198326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks &lt;SPAN class="replyToName"&gt;Jeffrey,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks to Everybody.&lt;/P&gt;&lt;P&gt;I have not found solution.&lt;/P&gt;&lt;P&gt;I will continue to use&amp;nbsp; &lt;STRONG&gt;sum(if(IsNull(CostoVen),Sales))&lt;/STRONG&gt; that works well&lt;/P&gt;&lt;P&gt;or I modify the script inserting&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NullAsValue CostoVen;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET NullValue = 0; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;and I reload the data.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Antonio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 20:52:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530520#M198326</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2014-01-17T20:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: Value NULL in set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530521#M198327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nicole,&lt;/P&gt;&lt;P&gt;There is no need for "?" here, unless you want to count blank values as nulls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;P&gt;Edit: in the attached, there are both versions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 20:54:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Value-NULL-in-set-analysis/m-p/530521#M198327</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-17T20:54:07Z</dc:date>
    </item>
  </channel>
</rss>

