<?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: Calculate Annual Growth Rates in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3992992#M53421</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/136873"&gt;@sdhn&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please create a &lt;STRONG&gt;measure&lt;/STRONG&gt; as below to get it:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Annual Growth Rate = 
VAR _fy1 =
    COUNT ( 'TD_IncBreach1FY'[Incident ID] )
VAR _fy2 =
    COUNT ( 'TD_IncBreach2FY'[Incident ID] )
RETURN
    ( _fy2 / _fy1 ) - 1&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyiruanmsft_0-1718356339935.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1116816iF14CD70904642B6E/image-size/large?v=v2&amp;amp;px=999" role="button" title="vyiruanmsft_0-1718356339935.png" alt="vyiruanmsft_0-1718356339935.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
    <pubDate>Fri, 14 Jun 2024 09:13:19 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-06-14T09:13:19Z</dc:date>
    <item>
      <title>Calculate Annual Growth Rates</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3975474#M53157</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am comparing two Fiscal period.&lt;/P&gt;&lt;P&gt;On my situation&amp;nbsp;&lt;/P&gt;&lt;P&gt;FY1&amp;nbsp; July 1 , 2023 to December 31 2023&lt;/P&gt;&lt;P&gt;FY2&amp;nbsp; Jan 1, 2024 to June 30 2024&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inm y Power bi report , I am showing data for both fiscal year by monthly as :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sdhn_0-1717627024938.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1111931iB188BE91A0C1BF66/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sdhn_0-1717627024938.png" alt="sdhn_0-1717627024938.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I want to displays&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I need to display Calculate Annual Growth Rates,&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;How can I display Calculate Annual Growth Rates onto there port?&amp;nbsp; Any help will be appreciated.&amp;nbsp; &amp;nbsp;Thanks&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thansk&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 22:46:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3975474#M53157</guid>
      <dc:creator>sdhn</dc:creator>
      <dc:date>2024-06-05T22:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Annual Growth Rates</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3975610#M53162</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/136873"&gt;@sdhn&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You can create a &lt;STRONG&gt;measure&lt;/STRONG&gt; as below to get it:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Annual Growth Rate =
VAR _begin =
    CALCULATE (
        SUM ( Table[Value] ),
        FILTER ( Table, Table[Date] = DATE ( 2023, 7, 1 ) )
    )
VAR _end =
    CALCULATE (
        SUM ( Table[Value] ),
        FILTER ( Table, Table[Date] = DATE ( 2024, 6, 30 ) )
    )
RETURN
    ( _end / _begin ) ^ ( 1 / [Number of Years] ) - 1&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;If the above ones can't help you figure out, please&amp;nbsp;provide some&amp;nbsp;&lt;STRONG&gt;raw data&lt;/STRONG&gt;&amp;nbsp;in your table&amp;nbsp; (&lt;EM&gt;&lt;STRONG&gt;exclude&amp;nbsp;sensitive&amp;nbsp;data&lt;/STRONG&gt;&lt;/EM&gt;) with&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Text&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;format&amp;nbsp;and your&amp;nbsp;&lt;STRONG&gt;expected result&lt;/STRONG&gt;&amp;nbsp;with backend logic and special examples. It would be helpful to find out the solution. You can refer the following link to share the required info:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-provide-sample-data-in-the-Power-BI-Forum%2Fba-p%2F963216&amp;amp;data=05%7C02%7Cv-yiruan%40microsoft.com%7Cfe6489193a1b4b3b2c3108dc521fb7ce%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638475543436019904%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;amp;sdata=v%2BEWR63B7CH%2BV5oWqwumB56nQFj9ualyOO61gu8e5SI%3D&amp;amp;reserved=0" target="_blank" rel="noopener nofollow noreferrer"&gt;How to provide sample data in the Power BI Forum&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;And&lt;FONT color="#FF0000"&gt;&amp;nbsp;&lt;STRONG&gt;it is better&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;if you can share a&amp;nbsp;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;simplified&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;pbix file. You can refer the following link to upload the file to the community. Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FDesktop%2FHow-to-upload-PBI-in-Community%2Fm-p%2F1672886&amp;amp;data=05%7C02%7Cv-yiruan%40microsoft.com%7Cfe6489193a1b4b3b2c3108dc521fb7ce%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638475543436025251%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;amp;sdata=VsmePB5Y0qB9BNuqnghHQeZSKzaaithvIv0fLr7iulE%3D&amp;amp;reserved=0" target="_blank" rel="noopener nofollow noreferrer"&gt;How to upload PBI in Community&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2024 01:24:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3975610#M53162</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-06-06T01:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Annual Growth Rates</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3986921#M53319</link>
      <description>&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1aux4Bm2b-W8Qr0UVsB8ZE7flIJs3VMB3/view?usp=sharing" target="_blank"&gt;https://drive.google.com/file/d/1aux4Bm2b-W8Qr0UVsB8ZE7flIJs3VMB3/view?usp=sharing&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 20:47:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3986921#M53319</guid>
      <dc:creator>sdhn</dc:creator>
      <dc:date>2024-06-11T20:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Annual Growth Rates</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3986922#M53320</link>
      <description>&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1aux4Bm2b-W8Qr0UVsB8ZE7flIJs3VMB3/view?usp=sharing" target="_self"&gt;https://drive.google.com/file/d/1aux4Bm2b-W8Qr0UVsB8ZE7flIJs3VMB3/view?usp=sharing&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 20:48:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3986922#M53320</guid>
      <dc:creator>sdhn</dc:creator>
      <dc:date>2024-06-11T20:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Annual Growth Rates</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3986942#M53321</link>
      <description>&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1lm3YQ60jclJhDg8rS8DqvxXJzk3is4uz/view?usp=sharing" target="_self"&gt;https://drive.google.com/file/d/1lm3YQ60jclJhDg8rS8DqvxXJzk3is4uz/view?usp=sharing&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1LN4PIsEJzf2ay5TDlT95BOomgnPizSdz/view?usp=sharing" target="_self"&gt;https://drive.google.com/file/d/1LN4PIsEJzf2ay5TDlT95BOomgnPizSdz/view?usp=sharing&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 20:58:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3986942#M53321</guid>
      <dc:creator>sdhn</dc:creator>
      <dc:date>2024-06-11T20:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Annual Growth Rates</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3992992#M53421</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/136873"&gt;@sdhn&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please create a &lt;STRONG&gt;measure&lt;/STRONG&gt; as below to get it:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Annual Growth Rate = 
VAR _fy1 =
    COUNT ( 'TD_IncBreach1FY'[Incident ID] )
VAR _fy2 =
    COUNT ( 'TD_IncBreach2FY'[Incident ID] )
RETURN
    ( _fy2 / _fy1 ) - 1&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyiruanmsft_0-1718356339935.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1116816iF14CD70904642B6E/image-size/large?v=v2&amp;amp;px=999" role="button" title="vyiruanmsft_0-1718356339935.png" alt="vyiruanmsft_0-1718356339935.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 09:13:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3992992#M53421</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-06-14T09:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Annual Growth Rates</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3998773#M53479</link>
      <description>&lt;P&gt;Thanks, this is good too.&lt;/P&gt;&lt;P&gt;But I need for Breaches only on monthly basis.&amp;nbsp; Can you assist on it?&amp;nbsp; Thanks&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2024 18:25:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Calculate-Annual-Growth-Rates/m-p/3998773#M53479</guid>
      <dc:creator>sdhn</dc:creator>
      <dc:date>2024-06-18T18:25:38Z</dc:date>
    </item>
  </channel>
</rss>

