<?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: exclude values of current selection in set analysis in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268197#M399238</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks Vineeth. I used this because we want to show data only when manager is selected. &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Mar 2017 06:40:46 GMT</pubDate>
    <dc:creator>nehasaxena</dc:creator>
    <dc:date>2017-03-23T06:40:46Z</dc:date>
    <item>
      <title>exclude values of current selection in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268189#M399230</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 a requirement to display the count of team members for all the managers other than selected manager. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written this expression - &lt;SPAN style="font-size: 10pt;"&gt;Count(DISTINCT{&amp;lt;manager-={'$(VGetManager)'}&amp;gt;} memberid)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Variable VGetManager = GetFieldSelections(manager)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;But this is working exactly opposite. If i select manager name than it gives me count of members associated with that manager. I want the count of not associated members.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I read about P and E function but not understand how to use in my case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest the expression. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Neha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Mar 2017 10:27:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268189#M399230</guid>
      <dc:creator>nehasaxena</dc:creator>
      <dc:date>2017-03-10T10:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: exclude values of current selection in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268190#M399231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;try this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Count(DISTINCT{&amp;lt;manager={'*'}-{'$(VGetManager)'}&amp;gt;} memberid)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Mar 2017 10:29:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268190#M399231</guid>
      <dc:creator>dsharmaqv</dc:creator>
      <dc:date>2017-03-10T10:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: exclude values of current selection in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268191#M399232</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;Use '1-$' in place of '$' this will give you excluded results,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Mar 2017 10:37:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268191#M399232</guid>
      <dc:creator />
      <dc:date>2017-03-10T10:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: exclude values of current selection in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268192#M399233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like:&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: 13.3333px;"&gt;&lt;EM&gt;Count(DISTINCT{&amp;lt;&lt;SPAN style="color: #0000ff;"&gt;manager=&lt;SPAN style="color: #ff0000;"&gt;-&lt;/SPAN&gt;$::manager&lt;/SPAN&gt;&amp;gt;} memberid)&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Mar 2017 10:41:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268192#M399233</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-03-10T10:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: exclude values of current selection in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268193#M399234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the below expressions,&lt;/P&gt;&lt;P&gt;count({$&amp;lt;manager=E({&amp;lt;manager={$(=getfieldselections(manager))}&amp;gt;}manager)&amp;gt;}memberid)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Mar 2017 10:56:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268193#M399234</guid>
      <dc:creator>praveenak</dc:creator>
      <dc:date>2017-03-10T10:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: exclude values of current selection in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268194#M399235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just this will do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Count(DISTINCT{&amp;lt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #0000ff;"&gt;manager=&lt;STRONG&gt;E&lt;/STRONG&gt;(manager)&lt;/SPAN&gt;&amp;gt;} memberid)&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Mar 2017 11:06:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268194#M399235</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-03-10T11:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: exclude values of current selection in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268195#M399236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vineet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not an offense but your expression will show 'No data to display' when there is no selection made in the filed 'manager'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Mar 2017 11:13:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268195#M399236</guid>
      <dc:creator>praveenak</dc:creator>
      <dc:date>2017-03-10T11:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: exclude values of current selection in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268196#M399237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;None taken; but there is no need to complicate it unnecessarily it's for the OP to decide what he want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Mar 2017 11:27:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268196#M399237</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-03-10T11:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: exclude values of current selection in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268197#M399238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks Vineeth. I used this because we want to show data only when manager is selected. &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2017 06:40:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268197#M399238</guid>
      <dc:creator>nehasaxena</dc:creator>
      <dc:date>2017-03-23T06:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: exclude values of current selection in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268198#M399239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This expression is not working &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2017 06:41:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268198#M399239</guid>
      <dc:creator>nehasaxena</dc:creator>
      <dc:date>2017-03-23T06:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: exclude values of current selection in set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268199#M399240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for confirming Neha,&lt;/P&gt;&lt;P&gt;Can you please close this thread my marking correct response, and also mark responses that were helpful&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-14806"&gt;Qlik Community Tip: Marking Replies as Correct or Helpful&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2017 10:45:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-values-of-current-selection-in-set-analysis/m-p/1268199#M399240</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-03-23T10:45:51Z</dc:date>
    </item>
  </channel>
</rss>

