<?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: Summing two fields in script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681638#M1079571</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry.. 1 more question - the "Group by" statement goes after From ..Qvd, correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Jul 2014 20:56:19 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-07-15T20:56:19Z</dc:date>
    <item>
      <title>Summing two fields in script</title>
      <link>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681632#M1079565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I understand that the sum used together with group by. How'd I apply it in the script though? Let's say to do these:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 1. sum both OEM and POS sales as&lt;STRONG&gt; total Sales&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt; 2. Then, I need to calculate total sales for new products released within a certain window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OEM_sale,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; POS_sale,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year_Qtr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year_Qtr_Product_Released,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(if((Year_Qtr - Year_Qtr_Product_Released) &amp;lt;= 30 and (Year_Qtr - Year_Qtr_Product_Released) &amp;gt;= 0, Total Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help, please?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 19:59:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681632#M1079565</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-15T19:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Summing two fields in script</title>
      <link>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681633#M1079566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i just had a group by issue and this thread helped me a lot...take a look:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/524913"&gt;Group By Error&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for sum of OEM and POS, do you need them done in the script?&lt;/P&gt;&lt;P&gt;if yes, and may be i missed something in your requirement, but why not try something like below (in bold) &lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OEM_sale,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; POS_sale,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OEM_sale + POS_sale as Total_sale,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year_Qtr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year_Qtr_Product_Released,&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and to restrict the time frame, use this formula in if condition..something like:&lt;/P&gt;&lt;P&gt;if((Year_Qtr - Year_Qtr_Product_Released) &amp;lt;= 30 and (Year_Qtr - Year_Qtr_Product_Released) &amp;gt;= 0, OEM_sale+POS_sale, 0) as Total_sale&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 20:13:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681633#M1079566</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-15T20:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Summing two fields in script</title>
      <link>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681634#M1079567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are looking to aggregate in the script you could do something like the below script, but you could also do these aggregations within the application itself, without having to group by.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Year_Qtr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year_Qtr_Product_Released,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(OEM_sale) as OEM_sale,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(POS_sale) as POS_sale,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(OEM_sale + POS_sale) as [Total Sales],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(if((Year_Qtr - Year_Qtr_Product_Released) &amp;lt;= 30 and (Year_Qtr - Year_Qtr_Product_Released) &amp;gt;= 0, OEM_sale + POS_sale)) as [Total Period Sales]&lt;/P&gt;&lt;P&gt;Resident Table&lt;/P&gt;&lt;P&gt;Group By Year_Qtr, Year_Qtr_Product_Released;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 20:15:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681634#M1079567</guid>
      <dc:creator>bhelms</dc:creator>
      <dc:date>2014-07-15T20:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Summing two fields in script</title>
      <link>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681635#M1079568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe you can just add a flag and manage it in the charts&lt;/P&gt;&lt;P&gt;expression for total sales = sum({$ &amp;lt;Flagnew....={1}&amp;gt;} OEM_sale + POS_sale)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OEM_sale,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; POS_sale,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year_Qtr,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year_Qtr_Product_Released,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if((&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Year_Qtr - Year_Qtr_Product_Released) &amp;lt;= 30 and &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;&amp;nbsp; (Year_Qtr - Year_Qtr_Product_Released) &amp;gt;= 0,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,0) as Flag&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;newproductsreleasedwithinacertainwindow&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ......&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;from&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .......&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 20:33:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681635#M1079568</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-07-15T20:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: Summing two fields in script</title>
      <link>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681636#M1079569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you guys, I did the flag initially, but I later realized that the flag would not work as well with other charts. Anyhow, I am going to try aggr method. Do I need to do the Resident table in order to get this to work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 20:43:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681636#M1079569</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-15T20:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Summing two fields in script</title>
      <link>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681637#M1079570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, that was just my example of your data. You didn't include the FROM statement so I made up my own.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 20:45:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681637#M1079570</guid>
      <dc:creator>bhelms</dc:creator>
      <dc:date>2014-07-15T20:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Summing two fields in script</title>
      <link>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681638#M1079571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry.. 1 more question - the "Group by" statement goes after From ..Qvd, correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 20:56:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681638#M1079571</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-15T20:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: Summing two fields in script</title>
      <link>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681639#M1079572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is correct. If you are loading from a QVD, it would look something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Year_Qtr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year_Qtr_Product_Released,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(OEM_sale) as OEM_sale,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(POS_sale) as POS_sale,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(OEM_sale + POS_sale) as [Total Sales],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(if((Year_Qtr - Year_Qtr_Product_Released) &amp;lt;= 30 and (Year_Qtr - Year_Qtr_Product_Released) &amp;gt;= 0, OEM_sale + POS_sale)) as [Total Period Sales]&lt;/P&gt;&lt;P&gt;From XYZ.qvd (qvd)&lt;/P&gt;&lt;P&gt;Group By Year_Qtr, Year_Qtr_Product_Released;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 21:01:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681639#M1079572</guid>
      <dc:creator>bhelms</dc:creator>
      <dc:date>2014-07-15T21:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: Summing two fields in script</title>
      <link>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681640#M1079573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 22:52:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681640#M1079573</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-15T22:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Summing two fields in script</title>
      <link>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681641#M1079574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year_Qtr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(OEM_sale)+sum(POS_sale) as TotalSale&lt;/P&gt;&lt;P&gt;from XXXXXX&lt;/P&gt;&lt;P&gt;where Year_Qtr - Year_Qtr_Product_Released&amp;lt;=30 and Year_Qtr - Year_Qtr_Product_Released&amp;gt;=0&lt;/P&gt;&lt;P&gt;group by Year_Qtr;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 03:36:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681641#M1079574</guid>
      <dc:creator>NZFei</dc:creator>
      <dc:date>2014-07-16T03:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Summing two fields in script</title>
      <link>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681642#M1079578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi thanks. I put the Sum(if(..) statement above the load as preceding load, pls see below. However, something about the scripts that it's not liking and it kinda just freezes on me when i debug it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(if((Year_Qtr -Year_Qtr_Product_Released)&amp;lt;=30 and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Year_Qtr -Year_Qtr_Product_Released)&amp;gt;=0, Ship_Value + POS_Revenue_Value))&amp;nbsp;&amp;nbsp;&amp;nbsp; as NP_3YR_Revenue,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OEM_sale,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; POS_sale,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(OEM_sale) + sum(POS_sale)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as Total_Sales,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; applymap('Calendar_Map', Calendar_Id, 0)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as Year_Qtr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; applymap('Product_Released_Map', Material_Id, 0)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as Year_Qtr_Product_Released,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;TotalSales.Qvd&lt;/P&gt;&lt;P&gt;(qvd)&lt;/P&gt;&lt;P&gt;Group by Year_Qtr, Year_Qtr_Product_Released;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 15:20:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Summing-two-fields-in-script/m-p/681642#M1079578</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-16T15:20:28Z</dc:date>
    </item>
  </channel>
</rss>

