<?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: Complicated sum - if or set analysis and syntax in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819409#M662673</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not yet, going to try it but it also excludes the else statement where it needs to sum(Quantity)&amp;nbsp; if the TransType &amp;lt;&amp;gt; 6,7&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the first one sums TransType 8 subtype 1234, the second option sums everything else except for TransType 6 and 7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Feb 2015 10:50:11 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-02-17T10:50:11Z</dc:date>
    <item>
      <title>Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819401#M662665</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;I have the following sum I need to do on a chart. What would be the best way to do this. My gut feel says set analysis but I can't see an example of something like this on the forums&lt;/P&gt;&lt;P&gt;This is it in SQL basically:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If TransType not in (6,7) and TransType = 8 and TransSubType in(1,2,3,4) sum&amp;nbsp; either KmUnit or Hours depending on which has a value. Only one of the two will have a value&lt;/P&gt;&lt;P&gt;Else&amp;nbsp; If TransType not in (6,7) sum Quantity&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So TransType 6 and 7 always need to be ignored in the sums - this is where I think set analysis is the way to go.&lt;/P&gt;&lt;P&gt;The basic sums is not hard doing but the combination is an issue, maybe I am over complicating it. Any advice especially with the syntax would be great&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 10:01:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819401#M662665</guid>
      <dc:creator />
      <dc:date>2015-02-17T10:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819402#M662666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest to prepare your requirements in the script.&lt;/P&gt;&lt;P&gt;provide a flag which you can use in set Analysis!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Advantage is that you donot need a complex set analysis&lt;/P&gt;&lt;P&gt;and depending onthe amount of data it will be fater&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 10:05:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819402#M662666</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-17T10:05:58Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819403#M662667</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;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(not isnull(KmUnit),&lt;/P&gt;&lt;P&gt;sum({&amp;lt;TransType={'8'},TransSubType={'1','2','3','4'}&amp;gt;} KmUnit),&lt;/P&gt;&lt;P&gt;sum({&amp;lt;TransType={'8'},TransSubType={'1','2','3','4'}&amp;gt;} Hours)&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 10:09:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819403#M662667</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-02-17T10:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819404#M662668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't think of a set analysis statement, but why not use a nested if statement? Try if this works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(TransType = 8 and Match(TransSubType, 1, 2, 3, 4), Sum(If(IsNull(KmUnits), Hours, KmUnit)), Sum(Quantity)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the more efficient way would be to flag these number in the script and then do a sum using set analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&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>Tue, 17 Feb 2015 10:10:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819404#M662668</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-02-17T10:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819405#M662669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;sunindia wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I can't think of a set analysis statement, but why not use a nested if statement? Try if this works:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;If(TransType = 8 and Match(TransSubType, 1, 2, 3, 4), Sum(If(IsNull(KmUnits), Hours, KmUnit)), Sum(Quantity)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I think the more efficient way would be to flag these number in the script and then do a sum using set analysis.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;HTH&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;S&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I like your answer best, how do I exclude &lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; font-size: 13.3333330154419px;"&gt;TransType 6 and 7 from the sum(Quantity)? It would be a nested if probably&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 10:19:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819405#M662669</guid>
      <dc:creator />
      <dc:date>2015-02-17T10:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819406#M662670</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;Did you try my solution??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 10:22:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819406#M662670</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-02-17T10:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819407#M662671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Update:&lt;/STRONG&gt; I think I don't understand the second part of your requirement? &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Else If TransType not in (6,7) sum Quantity&lt;/STRONG&gt;&lt;/SPAN&gt;? Can you explain that a little?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does TransType take values other than 6,7,8?&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;&lt;BR /&gt;&lt;/SPAN&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;HTH&lt;/SPAN&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;&lt;BR /&gt;&lt;/SPAN&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;Best,&lt;/SPAN&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;S&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 10:25:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819407#M662671</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-02-17T10:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819408#M662672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, For these charts I have to ignore values in the sum for TransType 6 and 7, the first part of the if statement sorts this as it is hardcoded so to speak to TransType 8&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the else then everything else needs to be summed except if the TransTyoe is 6 or 7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 10:46:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819408#M662672</guid>
      <dc:creator />
      <dc:date>2015-02-17T10:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819409#M662673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not yet, going to try it but it also excludes the else statement where it needs to sum(Quantity)&amp;nbsp; if the TransType &amp;lt;&amp;gt; 6,7&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the first one sums TransType 8 subtype 1234, the second option sums everything else except for TransType 6 and 7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 10:50:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819409#M662673</guid>
      <dc:creator />
      <dc:date>2015-02-17T10:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819410#M662674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This may be a good option, I am a bit pressed for time though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I understand you correctly I would for example have a field with a 1 for Type 8 subtype 1,2,3,4, 2 would be all other tran type except 6 and 7?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue in the script still remains the same as I said to the other guys, how do I handle the else, adding in the record with value 2. Tis I think is my main issue to resolve at this stage, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other than that I really also like your way of thinking, I just don't see it as a full solution&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 10:57:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819410#M662674</guid>
      <dc:creator />
      <dc:date>2015-02-17T10:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819411#M662675</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;Can you post sample data with expected output??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 11:03:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819411#M662675</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-02-17T11:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819412#M662676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it, try if this works&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;&lt;STRONG&gt;If(TransType = 8 and Match(TransSubType, 1, 2, 3, 4), Sum(If(IsNull(KmUnits), Hours, KmUnit)), If(not Match(TransType, 6, 7), Sum(Quantity))&lt;/STRONG&gt;&lt;/SPAN&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;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&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;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;I have not tested this, so you might have to play around with this a little.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you need more help.&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>Tue, 17 Feb 2015 11:08:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819412#M662676</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-02-17T11:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819413#M662677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Attached. I used some shortening of field names, the actual field names are in the file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 11:16:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819413#M662677</guid>
      <dc:creator />
      <dc:date>2015-02-17T11:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819414#M662678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The results is a bit more difficult to give you, on our full set of data I know what the sum should be&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 11:18:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819414#M662678</guid>
      <dc:creator />
      <dc:date>2015-02-17T11:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819415#M662679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;Something is wrong with the syntax, says garbage after expression if, am looking if I can find it&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Something is wrong with the syntax, says garbage after expression ",", am looking if I can find it&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 11:22:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819415#M662679</guid>
      <dc:creator />
      <dc:date>2015-02-17T11:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819416#M662680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check if this make sense? PFA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did it in the script by creating flags and I wasn't sure if you are trying to create a chart or text object. I have created a text object, because there is no dimension to display this information as a straight table.&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>Tue, 17 Feb 2015 11:29:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819416#M662680</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-02-17T11:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819417#M662681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Makes sense yes, I added the flags to the records, the flagging is correct but it it still summing tran types 6 and 7, going to look at making 6 and 7 flag 3, not sure if it will help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 11:44:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819417#M662681</guid>
      <dc:creator />
      <dc:date>2015-02-17T11:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Complicated sum - if or set analysis and syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819418#M662682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;Tried flag 3, still adding up tran types 6 and 7, no idea why the code looks 100%, had the same issue with another set analysis I got from the community&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, looked at the wrong column, I have an Amount column which is still my old code which is wrong, this sum in the example you sent is working 100%&lt;/P&gt;&lt;P&gt;Thanks a ,million&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 11:47:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Complicated-sum-if-or-set-analysis-and-syntax/m-p/819418#M662682</guid>
      <dc:creator />
      <dc:date>2015-02-17T11:47:33Z</dc:date>
    </item>
  </channel>
</rss>

