<?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: Need Set Analysis Explanation in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Need-Set-Analysis-Explanation/m-p/106659#M7261</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The former means taking the current selection, then deselect "B" in field Item.&lt;/P&gt;&lt;P&gt;The latter means selecting everything in field Item (regardless of current selection) except for "B". &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Sep 2018 13:39:07 GMT</pubDate>
    <dc:creator>vunguyenq89</dc:creator>
    <dc:date>2018-09-07T13:39:07Z</dc:date>
    <item>
      <title>Need Set Analysis Explanation</title>
      <link>https://community.qlik.com/t5/App-Development/Need-Set-Analysis-Explanation/m-p/106657#M7259</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;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I need a clarification on set analysis. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the difference between the below two sets?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({$&amp;lt;Item-={"B"}&amp;gt;}Amount) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({$&amp;lt;Item={'*'}-{"B"}&amp;gt;}Amount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Please Explain this &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks in advance.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Dineshraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2018 13:28:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-Set-Analysis-Explanation/m-p/106657#M7259</guid>
      <dc:creator>dineshraj</dc:creator>
      <dc:date>2018-09-07T13:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: Need Set Analysis Explanation</title>
      <link>https://community.qlik.com/t5/App-Development/Need-Set-Analysis-Explanation/m-p/106658#M7260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let's say you data looks like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Item&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Amount&lt;/P&gt;&lt;P&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 50&lt;/P&gt;&lt;P&gt;B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 40&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without selection, both the expression will show the same result, i.e. 50. But, the difference comes when you start making selections. For example, let's say you select Item B, Expression 1 in that case will show 0, whereas Expression 2 will continue to show 50. So, in essence, the minus sign before equal continues to honor your selections (and sort of works like an if statement), but the minus sign after = or after {'*'} will disregard all selections made in Item field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2018 13:33:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-Set-Analysis-Explanation/m-p/106658#M7260</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-09-07T13:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: Need Set Analysis Explanation</title>
      <link>https://community.qlik.com/t5/App-Development/Need-Set-Analysis-Explanation/m-p/106659#M7261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The former means taking the current selection, then deselect "B" in field Item.&lt;/P&gt;&lt;P&gt;The latter means selecting everything in field Item (regardless of current selection) except for "B". &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2018 13:39:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-Set-Analysis-Explanation/m-p/106659#M7261</guid>
      <dc:creator>vunguyenq89</dc:creator>
      <dc:date>2018-09-07T13:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need Set Analysis Explanation</title>
      <link>https://community.qlik.com/t5/App-Development/Need-Set-Analysis-Explanation/m-p/106660#M7262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thank you for your Explanation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dineshraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2018 13:42:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-Set-Analysis-Explanation/m-p/106660#M7262</guid>
      <dc:creator>dineshraj</dc:creator>
      <dc:date>2018-09-07T13:42:46Z</dc:date>
    </item>
  </channel>
</rss>

