<?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: Conditional sum / set analysis in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472083#M483839</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try with if( B like '*B2*' ,sum(C))?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Jun 2013 15:17:38 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-06-13T15:17:38Z</dc:date>
    <item>
      <title>Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472080#M483836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following data table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" cellpadding="3" cellspacing="0" class="jiveBorder" height="112" style="border: 1px solid rgb(0, 0, 0); width: 327px; height: 62px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;A&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;B&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;C&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Name 1&lt;/TD&gt;&lt;TD&gt;B1&lt;/TD&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Name 1&lt;/TD&gt;&lt;TD&gt;B2&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Name 2&lt;/TD&gt;&lt;TD&gt;B3&lt;/TD&gt;&lt;TD&gt;30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Name 2&lt;/TD&gt;&lt;TD&gt;B4&lt;/TD&gt;&lt;TD&gt;40&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to build a chart that can tell me the sum of the names have no B2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that I tried using the following set analysis: &lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;sum({$&amp;lt;B={"*"}-{"B2"}&amp;gt;} C) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;However, instead of getting 70 (30+40), I am obtaining 80 (30+40+10) which is logical.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;How can I make the expression "behave" so that I can exclude any trace of Name 1 (since one of its occurences contains B2)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Any ideas would be of great value.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Cheers&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 15:08:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472080#M483836</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-13T15:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472081#M483837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;IF i understood clearly u want to exclude all the time Field A with value Name1&lt;/P&gt;&lt;P&gt;ucan use this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;sum({$&amp;lt;B={"*"}-{"B2"},A-={'Name 1'}&amp;gt;} C) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;Thanks&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 15:14:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472081#M483837</guid>
      <dc:creator>shree909</dc:creator>
      <dc:date>2013-06-13T15:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472082#M483838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should be something in this direction:&lt;/P&gt;&lt;P&gt;sum({&amp;lt;A=P({1&amp;lt;B-={'B2'}&amp;gt;})&amp;gt;} C)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 15:14:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472082#M483838</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-13T15:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472083#M483839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try with if( B like '*B2*' ,sum(C))?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 15:17:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472083#M483839</guid>
      <dc:creator />
      <dc:date>2013-06-13T15:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472084#M483840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I do this, then if changes occur to name 1 by which it doesn't have B2, then I will exclude relevant data.&lt;/P&gt;&lt;P&gt;But thank you for the lead!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 15:17:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472084#M483840</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-13T15:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472085#M483841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Michael.&lt;/P&gt;&lt;P&gt;Indeed that is the way to go and it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum( &lt;SPAN style="font-size: 10pt; font-family: TimesNewRomanPSMT;"&gt;{$&amp;lt;A = E({1&amp;lt;B={‘B2’}&amp;gt;})&amp;gt;} C &lt;/SPAN&gt;&lt;STRONG style=": ; font-size: 10pt; font-family: TimesNewRomanPS-BoldMT;"&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 15:29:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472085#M483841</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-13T15:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472086#M483842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;How I forgot about E?&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 15:31:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472086#M483842</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-13T15:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472087#M483843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well in your defense, up to until 5 minutes ago, I had no clue that the function even existed.&lt;/P&gt;&lt;P&gt;And I can sleep happier today &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 15:43:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472087#M483843</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-13T15:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472088#M483844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It gets trickier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's say that I want to be able to add a parameter instead of the fixed B2 value.&lt;/P&gt;&lt;P&gt;I use then getfieldselections(B) in order to have a variable input&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I read that the appropriate syntax would be:&lt;/P&gt;&lt;P&gt;sum( &lt;SPAN style="font-family: TimesNewRomanPSMT; font-size: 10pt;"&gt;{$&amp;lt;A = E({1&amp;lt;B={"$(=getfieldselections(B)"}&amp;gt;})&amp;gt;} C )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: TimesNewRomanPSMT; font-size: 10pt;"&gt;But for some obscure reason, it doesn't work. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: TimesNewRomanPSMT; font-size: 10pt;"&gt;a - Is there a known limitation with E() and P() functions by which a function cannot be an argument of the expression?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: TimesNewRomanPSMT; font-size: 10pt;"&gt;b - Do I have an error in my syntax?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2013 08:53:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472088#M483844</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-14T08:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472089#M483845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the problem is that getfieldselections returns comm-separated values, but you need comm-separated values enclosed in single quotation marks.&amp;nbsp; If you always have something selected in this field, you can use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum( {$&amp;lt;A = E({1&amp;lt;B={chr (39) &amp;amp; concat(distinct B, chr(39) &amp;amp; ',' &amp;amp; chr(39)) &amp;amp; chr(39) }&amp;gt;})&amp;gt;} C)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there are no selections in field B, the list includes all values, son if it is not desirable, just add a condition that getselectedcount(B)&amp;gt;0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;P&gt;Edit: fixing expression: sum( {$&amp;lt;A = E({1&amp;lt;B={"$(=chr (39) &amp;amp; concat(distinct B, chr(39) &amp;amp; ',' &amp;amp; chr(39)) &amp;amp; chr(39) ) "}&amp;gt;})&amp;gt;} C)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2013 12:35:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472089#M483845</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-14T12:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472090#M483846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Micheal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum( {$&amp;lt;A = E({1&amp;lt;B={chr (39) &amp;amp; concat(distinct B, &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;chr(39)&lt;/STRONG&gt;&lt;/SPAN&gt; &amp;amp; ',' &amp;amp; chr(39)) &amp;amp; chr(39) }&amp;gt;})&amp;gt;} C)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This part is getting underlined with a red line.and the chr() function are not activated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;ADDRESS&gt;I managed to add parenthesis to it a bit in order to activate them but still get a red underline in &lt;STRONG&gt;here &lt;SPAN style="text-decoration: underline;"&gt;{&lt;/SPAN&gt;:&lt;/STRONG&gt;&lt;/ADDRESS&gt;&lt;ADDRESS&gt;&lt;STRONG&gt;I spaced the expression to delimit the red underline&lt;/STRONG&gt;&lt;/ADDRESS&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum &lt;SPAN style="font-size: 8pt;"&gt;({$&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;A&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;= &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;E&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({1&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;B&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;= { (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(39)&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;concat&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;distinct&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;B &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(39) &amp;amp; ',' &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(39)) &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(39))&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;&lt;EM&gt;}&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;gt;}) &amp;gt;} &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;C&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2013 13:22:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472090#M483846</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-14T13:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472091#M483847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ignore the red underline, it is not always indicates an error.&amp;nbsp; Try this in a text box - you see red but it works:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(39)&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;concat&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;distinct&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;B &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(39) &amp;amp; ',' &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(39)) &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(39)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2013 13:27:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472091#M483847</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-14T13:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472092#M483848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried ignoring it, but I wouldnt get any form of result&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2013 13:31:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472092#M483848</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-14T13:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472093#M483849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe I mistyped something.&amp;nbsp; If you can upload a sample of your application, I'll take a look.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2013 13:33:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472093#M483849</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-14T13:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472094#M483850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Michael.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you go.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2013 14:02:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472094#M483850</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-14T14:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472095#M483851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here it goes:&lt;/P&gt;&lt;P&gt;sum&lt;SPAN style="font-size: 8pt;"&gt; ({$&amp;lt;A= &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;E&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&lt;/SPAN&gt;&lt;SPAN style="color: #363636; font-size: 8pt;"&gt;1&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;lt;B= {"$(=chr(39)&amp;amp;concat(distinct B, chr(39) &amp;amp; ',' &amp;amp; chr(39)) &amp;amp; chr(39))"} &amp;gt;}) &amp;gt;} C) &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2013 14:10:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472095#M483851</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-14T14:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472096#M483852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is behaving as sum(C) would.&lt;/P&gt;&lt;P&gt;Whereas what I am trying to achieve is the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I select B1, then the output must exclude all A values that have B1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2013 14:17:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472096#M483852</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-14T14:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472097#M483853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure...&amp;nbsp; We select B now, hence affecting A.&amp;nbsp; See attached.&lt;/P&gt;&lt;P&gt;The most important change here is replacing {$} with {1}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2013 14:35:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472097#M483853</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-14T14:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional sum / set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472098#M483854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2013 14:59:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-sum-set-analysis/m-p/472098#M483854</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-14T14:59:24Z</dc:date>
    </item>
  </channel>
</rss>

