<?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: Mean percentage growth KPI in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Mean-percentage-growth-KPI/m-p/1959599#M79080</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/188530"&gt;@hjoopally&lt;/a&gt;&amp;nbsp; I just took the&amp;nbsp;Avg([Sales % Change]) and I got the required output. Please see the screen shot.&lt;/P&gt;
&lt;P&gt;If this resolves your issue, please like and accept it as a solution.&lt;/P&gt;</description>
    <pubDate>Sat, 23 Jul 2022 04:37:17 GMT</pubDate>
    <dc:creator>sidhiq91</dc:creator>
    <dc:date>2022-07-23T04:37:17Z</dc:date>
    <item>
      <title>Mean percentage growth KPI</title>
      <link>https://community.qlik.com/t5/App-Development/Mean-percentage-growth-KPI/m-p/1959582#M79079</link>
      <description>&lt;P&gt;I have one dimension (month) and one measure (sales) in my data. I calculated % change in sales per month using the following formula in a table chart:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Sum(Sales)/Above(Sum({&amp;lt;[Month]&amp;gt;}Sales)) - 1&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;I want to add a KPI which measures average monthly percentage change of sales. What's the formula to do that?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example&lt;/P&gt;
&lt;P&gt;Month - Sales - Sales % Change&lt;/P&gt;
&lt;P&gt;1 -10 - -&lt;/P&gt;
&lt;P&gt;2 -15 - 50%&lt;/P&gt;
&lt;P&gt;3 - 18 - 20%&lt;/P&gt;
&lt;P&gt;4 - 20 - 11%&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;KPI: Average = (50+20+11)/3 = 27%&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jul 2022 01:43:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Mean-percentage-growth-KPI/m-p/1959582#M79079</guid>
      <dc:creator>hjoopally</dc:creator>
      <dc:date>2022-07-24T01:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Mean percentage growth KPI</title>
      <link>https://community.qlik.com/t5/App-Development/Mean-percentage-growth-KPI/m-p/1959599#M79080</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/188530"&gt;@hjoopally&lt;/a&gt;&amp;nbsp; I just took the&amp;nbsp;Avg([Sales % Change]) and I got the required output. Please see the screen shot.&lt;/P&gt;
&lt;P&gt;If this resolves your issue, please like and accept it as a solution.&lt;/P&gt;</description>
      <pubDate>Sat, 23 Jul 2022 04:37:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Mean-percentage-growth-KPI/m-p/1959599#M79080</guid>
      <dc:creator>sidhiq91</dc:creator>
      <dc:date>2022-07-23T04:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Mean percentage growth KPI</title>
      <link>https://community.qlik.com/t5/App-Development/Mean-percentage-growth-KPI/m-p/1959644#M79089</link>
      <description>&lt;P&gt;I only have&amp;nbsp; month and sales in my data. I calculated % change using the formula below:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Sum(Sales)/Above(Sum({&amp;lt;[Month]&amp;gt;}Sales)) - 1&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;And&amp;nbsp; &lt;STRONG&gt;Avg(Sum(Sales)/Above(Sum({&amp;lt;[Month]&amp;gt;}Sales)) - 1)&amp;nbsp;&lt;/STRONG&gt;is not working.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jul 2022 01:39:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Mean-percentage-growth-KPI/m-p/1959644#M79089</guid>
      <dc:creator>hjoopally</dc:creator>
      <dc:date>2022-07-24T01:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Mean percentage growth KPI</title>
      <link>https://community.qlik.com/t5/App-Development/Mean-percentage-growth-KPI/m-p/1959646#M79090</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/188530"&gt;@hjoopally&lt;/a&gt;&amp;nbsp;Please see the below expression to calculate the Percentage % in straight table.&lt;/P&gt;
&lt;P&gt;(Sum(Sales)-(Above(Sum(Sales))))/(Above(Sum(Sales)))&lt;/P&gt;
&lt;P&gt;To calculate the Avg of Percentages, please the below formula.&lt;/P&gt;
&lt;P&gt;Avg(Aggr((Sum(Sales)-(Above(Sum(Sales))))/(Above(Sum(Sales))),Month))&lt;/P&gt;
&lt;P&gt;Please remember to set the expression to Number Percentage Format.&lt;/P&gt;
&lt;P&gt;I have attached the Screen shot for your references.&lt;/P&gt;
&lt;P&gt;If this resolves your issue, please like and accept it as a solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jul 2022 02:05:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Mean-percentage-growth-KPI/m-p/1959646#M79090</guid>
      <dc:creator>sidhiq91</dc:creator>
      <dc:date>2022-07-24T02:05:04Z</dc:date>
    </item>
  </channel>
</rss>

