<?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: isnull and not isnull in Set Analysis in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/isnull-and-not-isnull-in-Set-Analysis/m-p/451736#M168557</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But unfortunately I don't have opportunity change anything in the app. script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Jun 2013 10:39:18 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-06-10T10:39:18Z</dc:date>
    <item>
      <title>isnull and not isnull in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/isnull-and-not-isnull-in-Set-Analysis/m-p/451731#M168552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;I don't have any ideas how to write isnull and not is null in expression using Set Analsyis. In attached example, I have represented how it looks using if function, but I&amp;nbsp; have to write it using set analysis.&amp;nbsp; The task is to calculate amount fot that records where FirstValue hasn't value but SecondValue has it without anything changing in the script.&lt;/P&gt;&lt;P&gt;Thanks for help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jun 2013 13:42:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/isnull-and-not-isnull-in-Set-Analysis/m-p/451731#M168552</guid>
      <dc:creator />
      <dc:date>2013-06-07T13:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: isnull and not isnull in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/isnull-and-not-isnull-in-Set-Analysis/m-p/451732#M168553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=sum({$&amp;lt;FirstValue = {'*'} &amp;gt; - &amp;lt; SecondValue = {'*'}&amp;gt;} Amount)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jun 2013 13:49:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/isnull-and-not-isnull-in-Set-Analysis/m-p/451732#M168553</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-06-07T13:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: isnull and not isnull in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/isnull-and-not-isnull-in-Set-Analysis/m-p/451733#M168554</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, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;Rebeca&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jun 2013 13:54:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/isnull-and-not-isnull-in-Set-Analysis/m-p/451733#M168554</guid>
      <dc:creator />
      <dc:date>2013-06-07T13:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: isnull and not isnull in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/isnull-and-not-isnull-in-Set-Analysis/m-p/451734#M168555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Thanks, in that case it works, but I have one misundertanding. For example, If I relate this table1 with table2 which contains discription of that 'Dim' field and use insteed of it then it shows strange result (0 values in 'With Set Analysis' column). Please see new attached file.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 10:17:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/isnull-and-not-isnull-in-Set-Analysis/m-p/451734#M168555</guid>
      <dc:creator />
      <dc:date>2013-06-10T10:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: isnull and not isnull in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/isnull-and-not-isnull-in-Set-Analysis/m-p/451735#M168556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, looks kind of strange. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, you can create a RecID field in your script and do something like:&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;RecID = p({&amp;lt;FirstValue = {'*'} &amp;gt;}) - p({&amp;lt;SecondValue = {'*'}&amp;gt;}) &amp;gt;} Counter)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 10:31:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/isnull-and-not-isnull-in-Set-Analysis/m-p/451735#M168556</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-06-10T10:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: isnull and not isnull in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/isnull-and-not-isnull-in-Set-Analysis/m-p/451736#M168557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But unfortunately I don't have opportunity change anything in the app. script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 10:39:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/isnull-and-not-isnull-in-Set-Analysis/m-p/451736#M168557</guid>
      <dc:creator />
      <dc:date>2013-06-10T10:39:18Z</dc:date>
    </item>
  </channel>
</rss>

