<?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 How to calculate with cumulative percentage with particular year. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-with-cumulative-percentage-with-particular-year/m-p/2606830#M75493</link>
    <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to calculate the cumulative percentage as&amp;nbsp;&lt;/P&gt;&lt;P&gt;(curr-first year/firstyear)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I need is to have another column with cumulative percentage with 0%, 100%, 160%, 200%.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea how to do it?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;CH. Bhanu&lt;/P&gt;</description>
    <pubDate>Tue, 28 Jun 2022 12:18:25 GMT</pubDate>
    <dc:creator>Bhanu_chPBI</dc:creator>
    <dc:date>2022-06-28T12:18:25Z</dc:date>
    <item>
      <title>How to calculate with cumulative percentage with particular year.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-with-cumulative-percentage-with-particular-year/m-p/2606830#M75493</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to calculate the cumulative percentage as&amp;nbsp;&lt;/P&gt;&lt;P&gt;(curr-first year/firstyear)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I need is to have another column with cumulative percentage with 0%, 100%, 160%, 200%.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea how to do it?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;CH. Bhanu&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 12:18:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-with-cumulative-percentage-with-particular-year/m-p/2606830#M75493</guid>
      <dc:creator>Bhanu_chPBI</dc:creator>
      <dc:date>2022-06-28T12:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate with cumulative percentage with particular year.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-with-cumulative-percentage-with-particular-year/m-p/2608296#M75561</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="362159" data-lia-user-login="Bhanu_chPBI" class="lia-mention lia-mention-user"&gt;Bhanu_chPBI&lt;/a&gt; , for denominator you can have one of the following to get year data&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;example&lt;/P&gt;
&lt;P&gt;This year Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(ENDOFYEAR('Date'[Date]),"12/31"))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This Year = CALCULATE(sum('Table'[Qty]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 04:16:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-with-cumulative-percentage-with-particular-year/m-p/2608296#M75561</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-06-29T04:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate with cumulative percentage with particular year.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-with-cumulative-percentage-with-particular-year/m-p/2613416#M75862</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="362159" data-lia-user-login="Bhanu_chPBI" class="lia-mention lia-mention-user"&gt;Bhanu_chPBI&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try these measures.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Curr-First Year = 
CALCULATE(SUM('Table'[Value]),'Calendar'[Date]&amp;lt;MAX('Calendar'[Date]))&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;First Year = 
CALCULATE(SUM('Table'[Value]),FILTER(ALL('Calendar'),'Calendar'[Year]=MIN('Calendar'[Year])))&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Curr-First Year/First Year = 
DIVIDE([Curr-First Year],[First Year])+0&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;The PBIX file is attached for reference.&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;Best Regards,&lt;BR /&gt;Gao&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Community Support Team&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;If there is any post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT size="3" style="--darkreader-inline-color: #e22724;" color="#FF0000" data-darkreader-inline-color=""&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT size="3"&gt;&lt;FONT style="--darkreader-inline-color: #e22724;" color="#FF0000" data-darkreader-inline-color=""&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;Thanks a lot!&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" style="--darkreader-inline-color: #e22724;" color="#FF0000" data-darkreader-inline-color=""&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;How to get your questions answered quickly&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;--&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;How to provide sample data&lt;/SPAN&gt;&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2022 06:20:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-with-cumulative-percentage-with-particular-year/m-p/2613416#M75862</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-01T06:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate with cumulative percentage with particular year.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-with-cumulative-percentage-with-particular-year/m-p/2644513#M77778</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank's for your update!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2022 10:11:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-with-cumulative-percentage-with-particular-year/m-p/2644513#M77778</guid>
      <dc:creator>Bhanu_chPBI</dc:creator>
      <dc:date>2022-07-18T10:11:35Z</dc:date>
    </item>
  </channel>
</rss>

