<?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: Graph to show growth rate in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Graph-to-show-growth-rate/m-p/68638#M2240</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="13859" data-lia-user-login="srinutamada" class="lia-mention lia-mention-user"&gt;srinutamada﻿&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on my test, you could refer to the following steps.&lt;/P&gt;&lt;P&gt;1) add a new table&lt;/P&gt;&lt;PRE&gt;Table2 = 
GROUPBY (
    Table1,
    Table1[year],
    Table1[month],
    "usage", SUMX ( CURRENTGROUP (), Table1[usage] )
)&lt;/PRE&gt;&lt;P&gt;2) add a calculated column&lt;/P&gt;&lt;PRE&gt;growth rate = 
VAR Prev =
    LOOKUPVALUE (
        Table2[usage],
        Table2[Table1_year], Table2[Table1_year],
        Table2[Table1_month], Table2[Table1_month] - 1
    )
RETURN
    (
        IF ( ISBLANK ( Prev ), 0, ( Table2[usage] - Prev ) / Prev )
    )&lt;/PRE&gt;&lt;P&gt;3) format column "growth rate" as percentage&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 15 Sep 2016 11:09:34 GMT</pubDate>
    <dc:creator>v-chuncz-msft</dc:creator>
    <dc:date>2016-09-15T11:09:34Z</dc:date>
    <item>
      <title>Graph to show growth rate</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Graph-to-show-growth-rate/m-p/68013#M2217</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having the data of a SP site usage for last 6 months. I have the data for each day (table is having separate column&amp;nbsp;for&amp;nbsp;complete date,&amp;nbsp;month, day and year)&amp;nbsp;in a tabular format. Now I have to draw a chart for usage growth rate for each month. So could you please suggest is there any way to implement this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And also all charts on my dash board are interactive and shows data based on filters, so the new graph also should reflect growth rate based on those filters.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You suggestion are more welcome.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srinu Tamada&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2016 18:20:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Graph-to-show-growth-rate/m-p/68013#M2217</guid>
      <dc:creator>srinutamada</dc:creator>
      <dc:date>2016-09-13T18:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Graph to show growth rate</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Graph-to-show-growth-rate/m-p/68638#M2240</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="13859" data-lia-user-login="srinutamada" class="lia-mention lia-mention-user"&gt;srinutamada﻿&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on my test, you could refer to the following steps.&lt;/P&gt;&lt;P&gt;1) add a new table&lt;/P&gt;&lt;PRE&gt;Table2 = 
GROUPBY (
    Table1,
    Table1[year],
    Table1[month],
    "usage", SUMX ( CURRENTGROUP (), Table1[usage] )
)&lt;/PRE&gt;&lt;P&gt;2) add a calculated column&lt;/P&gt;&lt;PRE&gt;growth rate = 
VAR Prev =
    LOOKUPVALUE (
        Table2[usage],
        Table2[Table1_year], Table2[Table1_year],
        Table2[Table1_month], Table2[Table1_month] - 1
    )
RETURN
    (
        IF ( ISBLANK ( Prev ), 0, ( Table2[usage] - Prev ) / Prev )
    )&lt;/PRE&gt;&lt;P&gt;3) format column "growth rate" as percentage&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 11:09:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Graph-to-show-growth-rate/m-p/68638#M2240</guid>
      <dc:creator>v-chuncz-msft</dc:creator>
      <dc:date>2016-09-15T11:09:34Z</dc:date>
    </item>
  </channel>
</rss>

