<?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: year over year adding PCT in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/year-over-year-adding-PCT/m-p/974445#M333227</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Aug 2015 15:08:10 GMT</pubDate>
    <dc:creator>alec1982</dc:creator>
    <dc:date>2015-08-24T15:08:10Z</dc:date>
    <item>
      <title>year over year adding PCT</title>
      <link>https://community.qlik.com/t5/QlikView/year-over-year-adding-PCT/m-p/974440#M333222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a chart that shows projected sales per year. the end user want to make it automated by adding pct to year over year..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the chart has&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Year&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Projected Sales&lt;/P&gt;&lt;P&gt;2011`&amp;nbsp;&amp;nbsp;&amp;nbsp; 1000&lt;/P&gt;&lt;P&gt;2012&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1000&lt;/P&gt;&lt;P&gt;2013&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1200&lt;/P&gt;&lt;P&gt;2014&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1300&lt;/P&gt;&lt;P&gt;2015&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1400&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The end users wants to the chart to show future projected sales by using a variable and apply it to the current year so if the variable is 10% then the table will look like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2016&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (1400 * 10%)+1400&lt;/P&gt;&lt;P&gt;2017&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (2016 value&amp;nbsp; *10%)+2016 value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so one..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Alec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 21:48:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/year-over-year-adding-PCT/m-p/974440#M333222</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2015-08-21T21:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: year over year adding PCT</title>
      <link>https://community.qlik.com/t5/QlikView/year-over-year-adding-PCT/m-p/974441#M333223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see this post, ...&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/16846"&gt;Forecasting in Qlikview&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Aug 2015 05:25:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/year-over-year-adding-PCT/m-p/974441#M333223</guid>
      <dc:creator>ecolomer</dc:creator>
      <dc:date>2015-08-22T05:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: year over year adding PCT</title>
      <link>https://community.qlik.com/t5/QlikView/year-over-year-adding-PCT/m-p/974442#M333224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;INLINE [&lt;/P&gt;&lt;P&gt;Year,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ProjectedSales&lt;/P&gt;&lt;P&gt;2011,`&amp;nbsp;&amp;nbsp;&amp;nbsp; 1000&lt;/P&gt;&lt;P&gt;2012,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1000&lt;/P&gt;&lt;P&gt;2013,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1200&lt;/P&gt;&lt;P&gt;2014,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1300&lt;/P&gt;&lt;P&gt;2015,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1400];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(Data)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Peek(Year) + 1 AS Year,&lt;/P&gt;&lt;P&gt;Round(Peek(ProjectedSales) * 0.1) + Peek(ProjectedSales) AS ProjectedSales&lt;/P&gt;&lt;P&gt;AUTOGENERATE 10;&amp;nbsp;&amp;nbsp; // I have given 10 for next 10 years, based on your requirement change this number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Aug 2015 06:29:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/year-over-year-adding-PCT/m-p/974442#M333224</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-08-22T06:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: year over year adding PCT</title>
      <link>https://community.qlik.com/t5/QlikView/year-over-year-adding-PCT/m-p/974443#M333225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you both but both solution dont work for me..&amp;nbsp; the variable is set by the user on the front end using a slider so the forecasting needs to be within the chart....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 13:20:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/year-over-year-adding-PCT/m-p/974443#M333225</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2015-08-24T13:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: year over year adding PCT</title>
      <link>https://community.qlik.com/t5/QlikView/year-over-year-adding-PCT/m-p/974444#M333226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alec,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find attached file for solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 14:41:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/year-over-year-adding-PCT/m-p/974444#M333226</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-08-24T14:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: year over year adding PCT</title>
      <link>https://community.qlik.com/t5/QlikView/year-over-year-adding-PCT/m-p/974445#M333227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 15:08:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/year-over-year-adding-PCT/m-p/974445#M333227</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2015-08-24T15:08:10Z</dc:date>
    </item>
  </channel>
</rss>

