<?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: Error in Calculation in Set Analysis Expression of a Pie Graph in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790882#M662946</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Null values in Status "Doen't exists". For example, supossing that we have Status=1, and Status=2, and some null values:&lt;/P&gt;&lt;P&gt;ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status&lt;/P&gt;&lt;P&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;C&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With two list boxes with ID and Status fields. If you select value 1 in status, the available value in ID will be A. So, you click on "Select excluded values" in Status field. Now you will select Status=B, and the available ID will be B, not B and C. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you select status=1, and select excluded values in ID field, you will give what you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SET Analysis is similar to make selections. When you exclude Status values, you are selecting the rest, and if you are selecting the rest, you are excluding the nulls. But, if you exclude ID's with some Status values, the null is the "exclusion" of the "exclusion"....&amp;nbsp;&amp;nbsp; sorry, my english is not good, I'm being very confuse!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recommend you to try this kind of exercises when you have to do complex SA expressions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jan 2015 17:31:02 GMT</pubDate>
    <dc:creator>sebastiandperei</dc:creator>
    <dc:date>2015-01-29T17:31:02Z</dc:date>
    <item>
      <title>Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790875#M662939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Morning Everyone, I have a problem in one pie graph where I have one set analysis expression to calculate a distribution by a given variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this expression I create my first distribution where Status=1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count({&amp;lt;Rc={'D','K'}, Status={1}&amp;gt;} ID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the problem, with the following expression, I want to create a distribution with Status&amp;lt;&amp;gt;1, but sometimes Status could be Null. Then the expression does not consider this value, and I do not have all the registers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;count({&amp;lt;Rc={'D','K'}, Status-={1}&amp;gt;} ID)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Thanks for your help.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 13:31:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790875#M662939</guid>
      <dc:creator />
      <dc:date>2015-01-29T13:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790876#M662940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There must be a easier way to do it, but since I don't know the easier way I can suggest you a work around.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the script Create another field name called Status1 (still keep Status)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Status,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(IsNull(Status), 0, Status) as Status1&lt;/P&gt;&lt;P&gt;FROM ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then use this new field name in your expression:&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.3333330154419px;"&gt;Count({&amp;lt;Rc={'D','K'}, Status1-={1}&amp;gt;} ID) (Never used it like this)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Count({&amp;lt;Rc={'D','K'}, Status1= e({&amp;lt;Status1 = {1}&amp;gt;})&amp;gt;} ID) (This is how I exclude things)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If 0 is already a Status value, consider replacing it with something which Status won't take to differentiate it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Hope it helps.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;S&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 13:40:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790876#M662940</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-01-29T13:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790877#M662941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;Have a look here: &lt;/SPAN&gt;&lt;A href="https://community.qlik.com/t5/forums/searchpage/tab/message?q=include+null+in+set+analysis"&gt;http://community.qlik.com/search.jspa?q=include+null+in+set+analysis&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 13:53:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790877#M662941</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-01-29T13:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790878#M662942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333330154419px;"&gt;Count({&amp;lt;Rc={'D','K'}, ID=-p({&amp;lt;Status1={1}&amp;gt;}) &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333330154419px;"&gt;&amp;gt;} ID)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 14:27:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790878#M662942</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2015-01-29T14:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790879#M662943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This looks nice. Do you know if he can use e instead of -p??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Count({&amp;lt;Rc={'D','K'}, ID= e({&amp;lt;Status1={1}&amp;gt;}) &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;gt;} ID)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Just wondering.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;S&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 14:38:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790879#M662943</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-01-29T14:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790880#M662944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess It could work too... The most important thing to consider is that we need to exclude ID's that have status=1, not status=1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let Leonardo try both and answer to us to know!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leo, podrás probar si sirven las dos?&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 15:39:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790880#M662944</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2015-01-29T15:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790881#M662945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sense. I thought that if I basically Status1 = e({&amp;lt;Status1 = {1}&amp;gt;} it would exclude the those ID's where Status1 = 1. But I guess I will have to give it a test run.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response &lt;STRONG style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/sebastiandpereira"&gt;sebastiandpereira&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 15:48:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790881#M662945</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-01-29T15:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790882#M662946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Null values in Status "Doen't exists". For example, supossing that we have Status=1, and Status=2, and some null values:&lt;/P&gt;&lt;P&gt;ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status&lt;/P&gt;&lt;P&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;C&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With two list boxes with ID and Status fields. If you select value 1 in status, the available value in ID will be A. So, you click on "Select excluded values" in Status field. Now you will select Status=B, and the available ID will be B, not B and C. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you select status=1, and select excluded values in ID field, you will give what you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SET Analysis is similar to make selections. When you exclude Status values, you are selecting the rest, and if you are selecting the rest, you are excluding the nulls. But, if you exclude ID's with some Status values, the null is the "exclusion" of the "exclusion"....&amp;nbsp;&amp;nbsp; sorry, my english is not good, I'm being very confuse!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recommend you to try this kind of exercises when you have to do complex SA expressions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 17:31:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790882#M662946</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2015-01-29T17:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790883#M662947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for going over this in detail. I will definitely going to give it a try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 17:52:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790883#M662947</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-01-29T17:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790884#M662948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your idea, I resolved the problem using an If sentence in the script, I assigned the value that in a new variable, then in the set analysis I apply the filter using this one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 20:30:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790884#M662948</guid>
      <dc:creator />
      <dc:date>2015-01-29T20:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790885#M662949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome. As long as you were able to sort it out, its great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 20:43:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790885#M662949</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-01-29T20:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790886#M662950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ciao Friend- try this expression &lt;STRONG&gt;=count({&amp;lt;RC={'D','K'}, Status={"*"}&amp;gt;-&amp;lt;RC={'D','K'}, Status={1}&amp;gt;} ID).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Hope it helps. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 23:12:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790886#M662950</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-29T23:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790887#M662951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Friend, I tried that sentence but it did not throw me the same result as the script solution.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 14:43:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790887#M662951</guid>
      <dc:creator />
      <dc:date>2015-01-30T14:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Calculation in Set Analysis Expression of a Pie Graph</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790888#M662952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #002060; font-size: 12pt; font-family: 'Times New Roman','serif';"&gt;Thanks for your reply. I have basically created a set that has all the data excluding null values and the another set which does not have values for status=1. Then I have subtracted second set from the first set that exclude null as well as 1 from the first set. I guess that’s what probably you wanted. Attached is the sample qvw and data set. Let me know if you wanna send your app, I can check what’s going wrong there.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 15:59:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Calculation-in-Set-Analysis-Expression-of-a-Pie-Graph/m-p/790888#M662952</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-30T15:59:49Z</dc:date>
    </item>
  </channel>
</rss>

