<?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: How do I create a chart like this? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490907#M183392</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ralf,&lt;/P&gt;&lt;P&gt;I do not think that was what I wanted. I need to get the retention number for the next month.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Sep 2013 14:28:14 GMT</pubDate>
    <dc:creator>alexpanjhc</dc:creator>
    <dc:date>2013-09-06T14:28:14Z</dc:date>
    <item>
      <title>How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490900#M183385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I am looking to create a chart like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="BORDER-BOTTOM: #000000 1px solid; BORDER-LEFT: #000000 1px solid; WIDTH: 100%; BORDER-TOP: #000000 1px solid; BORDER-RIGHT: #000000 1px solid;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;"&gt;&lt;STRONG&gt;Total Number&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;"&gt;&lt;STRONG&gt;Jan 2012&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;"&gt;&lt;STRONG&gt;Feb 2012&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Gold&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;10000&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;8000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;In Feb 2012, I need to know how many of the gold accounts are also gold account in Jan 2012. In March I need to know the same for Feb. so on and so forth until December&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a vartiable called vPriorMonth, I do not know how to use it in a set analysis.&lt;/P&gt;&lt;P&gt;Any help is appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Sep 2013 19:38:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490900#M183385</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2013-09-05T19:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490901#M183386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you would need to create 3 variables called vMaxYear, vMaxMonth and vPriorMonth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vMaxYear = MAX(Year)&lt;/P&gt;&lt;P&gt;vMaxMonth = MONTH(MAX(Date))&lt;/P&gt;&lt;P&gt;vPriorMonth = MONTH(ADDMONTHS(MAX(Date) ,- 1))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you can write a couple of Expressions using those variables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUM({&amp;lt;Year={'$(vMaxYear)'},Month={'$(vMaxMonth)'}&amp;gt;}GoldAmount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUM({&amp;lt;Year={'$(vMaxYear)'},Month={'$(vPriorMonth)'}&amp;gt;}GoldAmount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe that could help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Sep 2013 20:34:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490901#M183386</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2013-09-05T20:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490902#M183387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure how this can help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUM({&amp;lt;Year={'$(vMaxYear)'},Month={'$(vMaxMonth)'}&amp;gt;}GoldAmount)&amp;nbsp; //this is for the most current month&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUM({&amp;lt;Year={'$(vMaxYear)'},Month={'$(vPriorMonth)'}&amp;gt;}GoldAmount) // this is for the prior month&lt;/P&gt;&lt;P&gt;how I can achive the goal with these formulas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Sep 2013 20:57:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490902#M183387</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2013-09-05T20:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490903#M183388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you should consider to use Above() chart inter record function to get the value of the previous month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Sep 2013 21:04:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490903#M183388</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2013-09-05T21:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490904#M183389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create 2 list boxes, one for Year and one for Month&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and when you select the a Year it becomes the max year and when you select a month from the Month listbox you will have your max month&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try it!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Sep 2013 21:06:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490904#M183389</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2013-09-05T21:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490905#M183390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let me clarify the goal. You do not want the difference in total count per month. You want to know how may specific accounts were gold in the last month and are still gold in the current month. For example, if account "A" was gold in both Jan and Feb, that account will be counted. Sort of a "returning customers" thing. A I correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 00:12:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490905#M183390</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-09-06T00:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490906#M183391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;Yes, the was the goal. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 13:19:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490906#M183391</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2013-09-06T13:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490907#M183392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ralf,&lt;/P&gt;&lt;P&gt;I do not think that was what I wanted. I need to get the retention number for the next month.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 14:28:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490907#M183392</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2013-09-06T14:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490908#M183393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would be good to have some sample data..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 17:41:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490908#M183393</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2013-09-06T17:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490909#M183394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe this will help a little bit?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 18:52:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490909#M183394</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2013-09-06T18:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490910#M183395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess we can handle this in script too. We can make a make a composite key like 'Month_Number-Account'.&lt;/P&gt;&lt;P&gt;For Example:&lt;/P&gt;&lt;P&gt;Month&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Account&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Composite Key&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Jan&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 123&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; 1-123&lt;/P&gt;&lt;P&gt;Feb&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 123&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; 2-123&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then calulate Account_Flag (IF left(Composite Key-1)&amp;amp;'-'Account) is present than 'Yes' else 'No'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 18:58:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490910#M183395</guid>
      <dc:creator />
      <dc:date>2013-09-06T18:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490911#M183396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good suggestion for only 2 months, but when it comes to many months, then we do not know which is which month. Right?&lt;/P&gt;&lt;P&gt;so let's say when it comes to March and account 123 is still active, do we marked it yes. But we do not really know if this yes is to what month.&lt;/P&gt;&lt;P&gt;Also how do you know if the composite key present?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 19:11:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490911#M183396</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2013-09-06T19:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490912#M183397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;composite key we need to generate for each month which ia a combination of Month and Account.&lt;/P&gt;&lt;P&gt;If you have data for sevral years you can also add year into composite key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find attached application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 20:00:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490912#M183397</guid>
      <dc:creator />
      <dc:date>2013-09-06T20:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490913#M183398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;there must be something I am missing. I know your used&amp;nbsp; (IF left(Composite Key-1)&amp;amp;'-'Account)&lt;/P&gt;&lt;P&gt;to create the Prev_month_com_key&amp;nbsp; but how did you know that key must exist or not?&lt;/P&gt;&lt;P&gt;Can you elabrate your idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 20:18:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490913#M183398</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2013-09-06T20:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490914#M183399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If previous month key is not present then it will not load those accounts and months.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In youe requirement we just need to concern with accounts which are present in last month.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 20:29:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490914#M183399</guid>
      <dc:creator />
      <dc:date>2013-09-06T20:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490915#M183400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if I know the previous key is or is not present, I would not have problems...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 20:52:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490915#M183400</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2013-09-06T20:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490916#M183401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you would load the data ordered you can use previous() function in load script to discover retension and set a counter flag on the record you sum up in the chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 21:34:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490916#M183401</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2013-09-06T21:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart like this?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490917#M183402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To give you an idea how to discover retention with previous() function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro _jivemacro_uid_13786641809129430 jive_macro_code" jivemacro_uid="_13786641809129430" modifiedtitle="true"&gt;
&lt;P&gt;Input:&lt;/P&gt;
&lt;P&gt;LOAD ID, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Period&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;D:\Book2.xlsx&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;P&gt;NoConcatenate LOAD ID, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Period,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(ID=previous(ID) and Period=previous(Period)+1, 1, 0) as Retention&lt;/P&gt;
&lt;P&gt;Resident Input&lt;/P&gt;
&lt;P&gt;Order By ID, Period;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Drop Table Input;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Sep 2013 18:16:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-create-a-chart-like-this/m-p/490917#M183402</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2013-09-08T18:16:55Z</dc:date>
    </item>
  </channel>
</rss>

