<?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 Accumulated chart by year in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Accumulated-chart-by-year/m-p/1783700#M61063</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Simplyfing, I have some data like this:&lt;/P&gt;&lt;PRE&gt;LOAD * INLINE [
    amount, date
    100, 2018/10
    101, 2018/11
    102, 2018/12
    103, 2019/01
    104, 2019/02
    105, 2019/03
    106, 2019/04
];&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;And I need a line chart which accumulates by year, that is:&lt;/P&gt;&lt;P&gt;100&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 201&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 303&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;103&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 207&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 312&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;418&lt;/P&gt;&lt;P&gt;2018/10&amp;nbsp; &amp;nbsp;2018/11&amp;nbsp; &amp;nbsp;2018/12&amp;nbsp; &amp;nbsp;&amp;nbsp;2019/01&amp;nbsp; &amp;nbsp;2019/02&amp;nbsp; &amp;nbsp;&amp;nbsp;2019/03&amp;nbsp; &amp;nbsp;&amp;nbsp;2019/04&lt;/P&gt;&lt;P&gt;I have tried something like:&lt;/P&gt;&lt;P&gt;Sum(Aggr(RangeSum(Above(sum(amount), 0, RowNo())),Year(date)))&lt;/P&gt;&lt;P&gt;Bur doesn't work.&lt;/P&gt;&lt;P&gt;Thanks a lot in advance&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 17:28:34 GMT</pubDate>
    <dc:creator>Pedro_Rodriguez</dc:creator>
    <dc:date>2024-11-16T17:28:34Z</dc:date>
    <item>
      <title>Accumulated chart by year</title>
      <link>https://community.qlik.com/t5/App-Development/Accumulated-chart-by-year/m-p/1783700#M61063</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Simplyfing, I have some data like this:&lt;/P&gt;&lt;PRE&gt;LOAD * INLINE [
    amount, date
    100, 2018/10
    101, 2018/11
    102, 2018/12
    103, 2019/01
    104, 2019/02
    105, 2019/03
    106, 2019/04
];&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;And I need a line chart which accumulates by year, that is:&lt;/P&gt;&lt;P&gt;100&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 201&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 303&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;103&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 207&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 312&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;418&lt;/P&gt;&lt;P&gt;2018/10&amp;nbsp; &amp;nbsp;2018/11&amp;nbsp; &amp;nbsp;2018/12&amp;nbsp; &amp;nbsp;&amp;nbsp;2019/01&amp;nbsp; &amp;nbsp;2019/02&amp;nbsp; &amp;nbsp;&amp;nbsp;2019/03&amp;nbsp; &amp;nbsp;&amp;nbsp;2019/04&lt;/P&gt;&lt;P&gt;I have tried something like:&lt;/P&gt;&lt;P&gt;Sum(Aggr(RangeSum(Above(sum(amount), 0, RowNo())),Year(date)))&lt;/P&gt;&lt;P&gt;Bur doesn't work.&lt;/P&gt;&lt;P&gt;Thanks a lot in advance&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 17:28:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Accumulated-chart-by-year/m-p/1783700#M61063</guid>
      <dc:creator>Pedro_Rodriguez</dc:creator>
      <dc:date>2024-11-16T17:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Accumulated chart by year</title>
      <link>https://community.qlik.com/t5/App-Development/Accumulated-chart-by-year/m-p/1783726#M61069</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/37520"&gt;@Pedro_Rodriguez&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try like below&lt;/P&gt;&lt;P&gt;LOAD *&lt;STRONG&gt;, Left(date,4) as Year&lt;/STRONG&gt; INLINE [&lt;BR /&gt;amount, date&lt;BR /&gt;100, 2018/10&lt;BR /&gt;101, 2018/11&lt;BR /&gt;102, 2018/12&lt;BR /&gt;103, 2019/01&lt;BR /&gt;104, 2019/02&lt;BR /&gt;105, 2019/03&lt;BR /&gt;106, 2019/04&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Sum(Aggr(RangeSum(Above(sum(amount), 0, RowNo())), Year,date))&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MayilVahanan_0-1613638327577.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/49343iCDC97208E79EE916/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MayilVahanan_0-1613638327577.png" alt="MayilVahanan_0-1613638327577.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Feb 2021 08:52:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Accumulated-chart-by-year/m-p/1783726#M61069</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2021-02-18T08:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Accumulated chart by year</title>
      <link>https://community.qlik.com/t5/App-Development/Accumulated-chart-by-year/m-p/1783770#M61079</link>
      <description>&lt;P&gt;Thanks a lot&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/17935"&gt;@MayilVahanan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Feb 2021 10:21:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Accumulated-chart-by-year/m-p/1783770#M61079</guid>
      <dc:creator>Pedro_Rodriguez</dc:creator>
      <dc:date>2021-02-18T10:21:54Z</dc:date>
    </item>
  </channel>
</rss>

