<?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: Issue in Accumulate in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461241#M172201</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Som, thanks for your reply i resolved my problem through script but not your one, basiclly i want to know how to handle this issue in expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Feb 2013 07:21:40 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-02-25T07:21:40Z</dc:date>
    <item>
      <title>Issue in Accumulate</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461237#M172197</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;Please find the attachment which is showing me Accumulate values of&amp;nbsp; volume [ Month Year] Jan2013, Feb2013 and Mar2013 but&lt;/P&gt;&lt;P&gt;i want only Jan and Feb becuase volume has only two months, kindly guide me the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2013 07:45:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461237#M172197</guid>
      <dc:creator />
      <dc:date>2013-02-22T07:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Accumulate</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461238#M172198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may use Above() function like below code snipet with LOAD statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(Above(&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;[ Month Year]&lt;/SPAN&gt;) = &lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;[ Month Year]&lt;/SPAN&gt;, Accumulated field - Above(Accumulated field), Accumulated field) as MonthWiseValue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Som&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2013 08:00:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461238#M172198</guid>
      <dc:creator>somenathroy</dc:creator>
      <dc:date>2013-02-22T08:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Accumulate</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461239#M172199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear above() function isnt working in script, i used previous() instead of above() but it isnt working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2013 08:19:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461239#M172199</guid>
      <dc:creator />
      <dc:date>2013-02-22T08:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Accumulate</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461240#M172200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your correction.&lt;/P&gt;&lt;P&gt;Have a look the below code, hope it may helps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;A:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Right([Month Year],4) as year, Left([Month Year],3) as month, Date(Date#([Month Year],'MMMYYYY'),'DD/MM/YYYY') as MonthStart ,volume as Accumulated_Volume;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Month Year, volume&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Jan2013,10&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Feb2013,25&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mar2013,25];&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;B:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *, if(IsNull(Previous(year)),Accumulated_Volume , Accumulated_Volume - Previous(Accumulated_Volume)) as MonthWise_Volume &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident A Order by year,MonthStart;&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DROP Table A;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Som&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2013 07:05:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461240#M172200</guid>
      <dc:creator>somenathroy</dc:creator>
      <dc:date>2013-02-25T07:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Accumulate</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461241#M172201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Som, thanks for your reply i resolved my problem through script but not your one, basiclly i want to know how to handle this issue in expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2013 07:21:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461241#M172201</guid>
      <dc:creator />
      <dc:date>2013-02-25T07:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Accumulate</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461242#M172202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;expression---&amp;gt; rangesum(above(sum(&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;volume&lt;/SPAN&gt;),0,RowNo()))&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;[ Month Year]&lt;/SPAN&gt; adding your dimension&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2013 07:37:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461242#M172202</guid>
      <dc:creator>er_mohit</dc:creator>
      <dc:date>2013-02-25T07:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Accumulate</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461243#M172203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Zain, &lt;/P&gt;&lt;P&gt;Can you share how you resolved this in the script please, I am trying to do this too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done it in my table using the above function, but need it in the script.&lt;/P&gt;&lt;P&gt;if(order_id=Above( Total order_id),Amount-Above(Total Amount),0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2013 08:10:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461243#M172203</guid>
      <dc:creator>rob_greene</dc:creator>
      <dc:date>2013-02-25T08:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Accumulate</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461244#M172204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attachment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2013 08:15:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461244#M172204</guid>
      <dc:creator />
      <dc:date>2013-02-25T08:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Accumulate</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461245#M172205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear ER.Mohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did but its give me continuing line for all months, i have attached the application (first one) kindly apply on it and send to me back, i need to show only jan and feb 2013 data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2013 08:19:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461245#M172205</guid>
      <dc:creator />
      <dc:date>2013-02-25T08:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Accumulate</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461246#M172206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks Zain,&lt;/P&gt;&lt;P&gt;I have done this now&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF( Tranche_ID=Previous(Tranche_ID) &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AND order_id=Previous(order_id)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AND [Order_Version]&amp;lt;&amp;gt;Previous(Order_Version), &lt;/P&gt;&lt;P&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; Amount - Previous(Amount),Amount ) AS Delta2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked a treat&lt;SPAN style="font-size: 10pt;"&gt;. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(note:above function in script)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2013 09:55:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-in-Accumulate/m-p/461246#M172206</guid>
      <dc:creator>rob_greene</dc:creator>
      <dc:date>2013-02-25T09:55:38Z</dc:date>
    </item>
  </channel>
</rss>

