<?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: Combo chart with cumulative in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Combo-chart-with-cumulative/m-p/61652#M4062</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 attach some data ? 12 lines with 2 columns: Flow and Date_measure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Mar 2018 08:47:02 GMT</pubDate>
    <dc:creator>YoussefBelloum</dc:creator>
    <dc:date>2018-03-21T08:47:02Z</dc:date>
    <item>
      <title>Combo chart with cumulative</title>
      <link>https://community.qlik.com/t5/App-Development/Combo-chart-with-cumulative/m-p/61651#M4061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all. Hopefully this is pretty straight forward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So here is the script I have for my app:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECT &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;True_Churn, Retention_Target, Date_Measure, Closing_Base, Opening_Base,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(Closing_Base - Opening_Base) as Flow&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;from xxxxx&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And here is my data table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 535px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="107"&gt;&lt;STRONG&gt;Opening_Base&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="107"&gt;&lt;STRONG&gt;Closing_Base&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="107"&gt;&lt;STRONG&gt;True_Churn&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="116"&gt;&lt;STRONG&gt;Retention_Target&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="98"&gt;&lt;STRONG&gt;Date_Measure&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;&lt;STRONG&gt;40335&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD align="right"&gt;&lt;STRONG&gt;40838&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD align="right"&gt;&lt;STRONG&gt;7&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD align="right" class="xl64"&gt;&lt;STRONG&gt;88.50%&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;&lt;STRONG&gt;01-01-18&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;&lt;STRONG&gt;40838&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD align="right"&gt;&lt;STRONG&gt;44219&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD align="right"&gt;&lt;STRONG&gt;549&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD align="right" class="xl64"&gt;&lt;STRONG&gt;85.90%&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;&lt;STRONG&gt;01-02-18&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;&lt;/TD&gt;&lt;TD align="right"&gt;&lt;/TD&gt;&lt;TD align="right"&gt;&lt;/TD&gt;&lt;TD align="right" class="xl64"&gt;&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;&lt;/TD&gt;&lt;TD align="right"&gt;&lt;/TD&gt;&lt;TD align="right"&gt;&lt;/TD&gt;&lt;TD align="right" class="xl64"&gt;&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Each month I'm going to update the table with the previous month's data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to product a combo bar/line graph showing each month's Flow number as the bars, with the cumulative month on month Flow as the line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The basics are pretty, well, basic:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Dimension = month(Date_Measure)&lt;/LI&gt;&lt;LI&gt;First measure for the bars = sum(Flow)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But how do I add a cumulative line graph to it please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(Sum(if(year(Date_Measure)=2018, Flow,0))&amp;gt;0,&amp;nbsp; rangesum( above( sum(if(year(Date_Measure) = 2018,Flow,0)),0,rowno())), null)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;But it's returning a figure for Feb of 27,188 (no idea how it's got that) not the expected 3,884. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2018 03:14:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combo-chart-with-cumulative/m-p/61651#M4061</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-21T03:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Combo chart with cumulative</title>
      <link>https://community.qlik.com/t5/App-Development/Combo-chart-with-cumulative/m-p/61652#M4062</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 attach some data ? 12 lines with 2 columns: Flow and Date_measure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2018 08:47:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combo-chart-with-cumulative/m-p/61652#M4062</guid>
      <dc:creator>YoussefBelloum</dc:creator>
      <dc:date>2018-03-21T08:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Combo chart with cumulative</title>
      <link>https://community.qlik.com/t5/App-Development/Combo-chart-with-cumulative/m-p/61653#M4063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Youssef&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As attached - it's my actual data. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2018 19:31:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combo-chart-with-cumulative/m-p/61653#M4063</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-21T19:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Combo chart with cumulative</title>
      <link>https://community.qlik.com/t5/App-Development/Combo-chart-with-cumulative/m-p/61654#M4064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi - sorted. I had made it far too complicated. Just a straight &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;&lt;STRONG&gt;Rangesum(above(sum(Flow),0,RowNo()))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has done it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2018 02:04:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combo-chart-with-cumulative/m-p/61654#M4064</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-23T02:04:07Z</dc:date>
    </item>
  </channel>
</rss>

