<?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: Set Analysis Ignoring Selection in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Ignoring-Selection/m-p/65311#M4324</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually this should work even better&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; font-size: 13px;"&gt;SUM({$&amp;lt;[Team] *= {'Original'}, Month = {"$(=Month($(vMaxDate)))"}&amp;gt;}[Lead Goal])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Apr 2018 00:03:02 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2018-04-06T00:03:02Z</dc:date>
    <item>
      <title>Set Analysis Ignoring Selection</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Ignoring-Selection/m-p/65307#M4320</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;I have an expression in set notation that I need to be affected by the filter I choose. From what I understand, the {$&amp;lt;&amp;gt;} notation is supposed to be affected by the filters/selections, yet it isn't changing in this case. My expression is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({$&amp;lt;[Team] = {"Original"},Month = {"$(=Month($(vMaxDate)))"}&amp;gt;}[Lead Goal])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In other words, the value displayed should be the current month's Lead Goal for the Original Team. It gives me the correct value, but when I use my [Team] filter, it stays the same. If I select a [Team] other than "Original", I want the value to be 0. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for shedding some light on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aaron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2018 21:14:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Ignoring-Selection/m-p/65307#M4320</guid>
      <dc:creator>acbishop2</dc:creator>
      <dc:date>2018-04-05T21:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Ignoring Selection</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Ignoring-Selection/m-p/65308#M4321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What I understand is, the modifier {Team]={'Original'} overrides the selections in the Team field. So whatever you choose, this particular chart would not be affected by the selections in Team field. the {$&amp;lt;&amp;gt;} allows to make selections in other fields and they will impact the result.&lt;/P&gt;&lt;P&gt;I think you need something like this, need to test the syntax -&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Sum({$(&amp;lt;[Team] = {'Original'}&amp;gt;*&amp;lt;Team=P(Team)&amp;gt;)*&amp;lt;Month = {"$(=Month($(vMaxDate)))"}&amp;gt;}[Lead Goal])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2018 21:34:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Ignoring-Selection/m-p/65308#M4321</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2018-04-05T21:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Ignoring Selection</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Ignoring-Selection/m-p/65309#M4322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You did it again, Digvijay!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's the solution with final syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUM({$&amp;lt;[Team] = {'Original'}&amp;gt;*&amp;lt;[Team]=P([Team])&amp;gt;*&amp;lt;Month = {"$(=Month($(vMaxDate)))"}&amp;gt;}[Lead Goal])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hadn't ever seen the P() function. Thanks for introducing it to me!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2018 21:47:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Ignoring-Selection/m-p/65309#M4322</guid>
      <dc:creator>acbishop2</dc:creator>
      <dc:date>2018-04-05T21:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Ignoring Selection</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Ignoring-Selection/m-p/65310#M4323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This might have worked also&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; font-size: 13px;"&gt;SUM({$&amp;lt;[Team] = {'Original'}*P([Team]), Month = {"$(=Month($(vMaxDate)))"}&amp;gt;}[Lead Goal])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 00:02:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Ignoring-Selection/m-p/65310#M4323</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-06T00:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Ignoring Selection</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Ignoring-Selection/m-p/65311#M4324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually this should work even better&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; font-size: 13px;"&gt;SUM({$&amp;lt;[Team] *= {'Original'}, Month = {"$(=Month($(vMaxDate)))"}&amp;gt;}[Lead Goal])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 00:03:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Ignoring-Selection/m-p/65311#M4324</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-06T00:03:02Z</dc:date>
    </item>
  </channel>
</rss>

