<?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 Exclude Selected Filter Value from Chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclude-Selected-Filter-Value-from-Chart/m-p/92703#M14970</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a pie chart that displays data from vendors selected in a List Box which works fine. I need to add another pie chart that displays data from all the other vendors beside the selected vendor in the list box. The expressions will be the same save excluding the selected vendor. Any help will be appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Oct 2018 16:34:54 GMT</pubDate>
    <dc:creator>ashokunbi</dc:creator>
    <dc:date>2018-10-10T16:34:54Z</dc:date>
    <item>
      <title>Exclude Selected Filter Value from Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-Selected-Filter-Value-from-Chart/m-p/92703#M14970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a pie chart that displays data from vendors selected in a List Box which works fine. I need to add another pie chart that displays data from all the other vendors beside the selected vendor in the list box. The expressions will be the same save excluding the selected vendor. Any help will be appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2018 16:34:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-Selected-Filter-Value-from-Chart/m-p/92703#M14970</guid>
      <dc:creator>ashokunbi</dc:creator>
      <dc:date>2018-10-10T16:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude Selected Filter Value from Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-Selected-Filter-Value-from-Chart/m-p/92704#M14971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try using the e() expression within your setanalysis&lt;/P&gt;&lt;P&gt;something like &lt;/P&gt;&lt;P&gt;Sum({&amp;lt;CustomerRegion=E(CustomerRegion)&amp;gt;}LineSalesAmount) which excludes all selection of CustomerRegion dimension&lt;/P&gt;&lt;P&gt;check below&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/September2018/Subsystems/Hub/Content/Sense_Hub/ChartFunctions/SetAnalysis/set-modifiers-implicit-field-value-definitions.htm" title="https://help.qlik.com/en-US/sense/September2018/Subsystems/Hub/Content/Sense_Hub/ChartFunctions/SetAnalysis/set-modifiers-implicit-field-value-definitions.htm"&gt;https://help.qlik.com/en-US/sense/September2018/Subsystems/Hub/Content/Sense_Hub/ChartFunctions/SetAnalysis/set-modifier…&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2018 17:20:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-Selected-Filter-Value-from-Chart/m-p/92704#M14971</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2018-10-10T17:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude Selected Filter Value from Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-Selected-Filter-Value-from-Chart/m-p/92705#M14972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry I didn't get back to you sooner on this Dilip and BTW thanks for your help. I checked out the link and used your sample and I am getting no data to display.&lt;/P&gt;&lt;P&gt;Here is my original expression that shows the data for the selected vendor in the list box:&lt;/P&gt;&lt;P&gt;((sum($(vLTMPts))/Count(ItemNumber))*.20)+&lt;/P&gt;&lt;P&gt;((Count(if(ReceiptDate - PromisedDate &amp;lt;= 0,0))/Count(RequestedDate))*.3)+&lt;/P&gt;&lt;P&gt;(((count(DocNumber)-count(if(Issues&amp;gt;0,0)))/Count(DocNumber))*.05)+&lt;/P&gt;&lt;P&gt;(((Sum(QtyDamaged)/Sum(QtyRcvd)-1)*-1)*.10)+&lt;/P&gt;&lt;P&gt;(((($(vQ3AvgCost)-$(vQ2AvgCost))/$(vQ2AvgCost)*PVWeight)+(TermsWeight*Terms)+(RTWeight*Returns))*.05)+&lt;/P&gt;&lt;P&gt;(.90*.30)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And here is the modification I made based on your response:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Sum({&amp;lt;VendorName=E(VendorName)&amp;gt;}((sum($(vLTMPts))/Count(ItemNumber))*.20)+&lt;/P&gt;&lt;P&gt;((Count(if(ReceiptDate - PromisedDate &amp;lt;= 0,0))/Count(RequestedDate))*.3)+&lt;/P&gt;&lt;P&gt;(((count(DocNumber)-count(if(Issues&amp;gt;0,0)))/Count(DocNumber))*.05)+&lt;/P&gt;&lt;P&gt;(((Sum(QtyDamaged)/Sum(QtyRcvd)-1)*-1)*.10)+&lt;/P&gt;&lt;P&gt;(((($(vQ3AvgCost)-$(vQ2AvgCost))/$(vQ2AvgCost)*PVWeight)+(TermsWeight*Terms)+(RTWeight*Returns))*.05)+&lt;/P&gt;&lt;P&gt;(.90*.30)) )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like I said I am getting No Data To Display in the chart after the modification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2018 19:27:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-Selected-Filter-Value-from-Chart/m-p/92705#M14972</guid>
      <dc:creator>ashokunbi</dc:creator>
      <dc:date>2018-10-11T19:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude Selected Filter Value from Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-Selected-Filter-Value-from-Chart/m-p/92706#M14973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you will need to repeat the set analysis for all the aggregation functions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2018 20:13:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-Selected-Filter-Value-from-Chart/m-p/92706#M14973</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2018-10-11T20:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude Selected Filter Value from Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-Selected-Filter-Value-from-Chart/m-p/92707#M14974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just tried below and it didn't work. Not sure if that is what you mean.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Sum({&amp;lt;VendorName=E(VendorName)&amp;gt;}((sum($(vLTMPts))/Count(ItemNumber))*.20))+&lt;/P&gt;&lt;P&gt;(Sum({&amp;lt;VendorName=E(VendorName)&amp;gt;}((Count(if(ReceiptDate - PromisedDate &amp;lt;= 0,0))/Count(RequestedDate))*.3))+&lt;/P&gt;&lt;P&gt;(Sum({&amp;lt;VendorName=E(VendorName)&amp;gt;}(((count(DocNumber)-count(if(Issues&amp;gt;0,0)))/Count(DocNumber))*.05))+&lt;/P&gt;&lt;P&gt;(Sum({&amp;lt;VendorName=E(VendorName)&amp;gt;}(((Sum(QtyDamaged)/Sum(QtyRcvd)-1)*-1)*.10))+&lt;/P&gt;&lt;P&gt;(Sum({&amp;lt;VendorName=E(VendorName)&amp;gt;}(((($(vQ3AvgCost)-$(vQ2AvgCost))/$(vQ2AvgCost)*PVWeight)+(TermsWeight*Terms)+(RTWeight*Returns))*.05))+&lt;/P&gt;&lt;P&gt;(Sum({&amp;lt;VendorName=E(VendorName)&amp;gt;}(.90*.30))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2018 20:21:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-Selected-Filter-Value-from-Chart/m-p/92707#M14974</guid>
      <dc:creator>ashokunbi</dc:creator>
      <dc:date>2018-10-11T20:21:27Z</dc:date>
    </item>
  </channel>
</rss>

