<?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: Cumulative quantity for each date/month between a date range in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Cumulative-quantity-for-each-date-month-between-a-date-range/m-p/1335332#M411950</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That worked Anil. Thanks &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Jun 2017 17:25:22 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-06-08T17:25:22Z</dc:date>
    <item>
      <title>Cumulative quantity for each date/month between a date range</title>
      <link>https://community.qlik.com/t5/QlikView/Cumulative-quantity-for-each-date-month-between-a-date-range/m-p/1335330#M411948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to create a chart in Qlikview that gives the accumulated quantity for each date between a date range. Let me explain.&lt;/P&gt;&lt;P&gt;I've an excel data which I've loaded into Qlikview and it looks like this :&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QV_Data.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/166205_QV_Data.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;How can I create a bar chart from this data to look like this :&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QV_Chart.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/166206_QV_Chart.PNG" style="height: 180px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;What if I want the &lt;SPAN style="font-size: 13.3333px;"&gt;accumulated &lt;/SPAN&gt;quantity for each &lt;STRONG&gt;month&lt;/STRONG&gt; between a date range ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ben&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jun 2017 12:53:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cumulative-quantity-for-each-date-month-between-a-date-range/m-p/1335330#M411948</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-08T12:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative quantity for each date/month between a date range</title>
      <link>https://community.qlik.com/t5/QlikView/Cumulative-quantity-for-each-date-month-between-a-date-range/m-p/1335331#M411949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here you go&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Quantity, Date(Date,'DD-MMM') as Date;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *, Date([Start Date] + IterNo() -1) as Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;While Date([Start Date] + IterNo() -1) &amp;lt;= [End Date];&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;Product, Quantity, Start Date, End Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;XYZ,10,02/03/2017, 02/15/2017&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ABC,20, 02/13/2017, 03/03/2017&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;PS - Then, Create straight table with Date as Dimension and Sum(Quantity) as Expression&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/166227_Capture.PNG" style="height: 134px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jun 2017 15:31:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cumulative-quantity-for-each-date-month-between-a-date-range/m-p/1335331#M411949</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-06-08T15:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative quantity for each date/month between a date range</title>
      <link>https://community.qlik.com/t5/QlikView/Cumulative-quantity-for-each-date-month-between-a-date-range/m-p/1335332#M411950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That worked Anil. Thanks &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jun 2017 17:25:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cumulative-quantity-for-each-date-month-between-a-date-range/m-p/1335332#M411950</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-08T17:25:22Z</dc:date>
    </item>
  </channel>
</rss>

