<?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: I wanna show the monthly change in % - with a DAX Formula in Power BI in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3716339#M144651</link>
    <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="550306" data-lia-user-login="LTi" class="lia-mention lia-mention-user"&gt;LTi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope all is going well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on your description, I found that the formula was missing the closing bracket of the function and failed to calculate the percentage change correctly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are my adjusted measure, please try:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;% Veränderung Monat =
IF(
     ISFILTERED('Profit Share gesamt'[offerAcceptedDate2]),
     BLANK(),
     VAR _Current_Month_Profit = SUM('Profit Share gesamt'[Profit])
     VAR _PREV_MONTH_Profit =
         CALCULATE(
             SUM('Profit Share gesamt'[Profit]),
             DATEADD('Profit Share gesamt'[offerAcceptedDate2], -1, MONTH)
         )
     VAR _Change = _Current_Month_Profit - _PREV_MONTH_Profit
     RETURN
         IF(
             _PREV_MONTH_Profit = 0, BLANK(),
             DIVIDE(_Change, _PREV_MONTH_Profit)
         )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your problem cannot be solved successfully, please provide me with sample data for testing, and be careful not to include private information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your patience and waiting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yang&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let us know.&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Feb 2024 07:59:03 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-02-22T07:59:03Z</dc:date>
    <item>
      <title>I wanna show the monthly change in % - with a DAX Formula in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3714386#M144555</link>
      <description>&lt;P&gt;what am I doing wrong? I get an Error when I try it like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;% Veränderung Monat = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ISFILTERED&lt;/SPAN&gt;&lt;SPAN&gt;('Profit Share gesamt'[offerAcceptedDate2]),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ERROR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"Quickmeasures mit Zeitintelligenz können nur über die von Power BI bereitgestellte Datumshierarchie oder die primäre Datumsspalte &amp;nbsp;gruppiert oder gefiltert werden."&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; _PREV_MONTH =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;('Profit Share gesamt'[Profit]),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DATEADD&lt;/SPAN&gt;&lt;SPAN&gt;('Profit Share gesamt'[offerAcceptedDate2]&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;[Monat], -&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;, MONTH&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;('Profit Share gesamt'[Profit])-_PREV_MONTH&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hope you can help me!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Best, TL&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 21 Feb 2024 13:42:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3714386#M144555</guid>
      <dc:creator>LTi</dc:creator>
      <dc:date>2024-02-21T13:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: I wanna show the monthly change in % - with a DAX Formula in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3715479#M144614</link>
      <description>&lt;P&gt;Please provide sample data that covers your issue or question &lt;STRONG&gt;completely&lt;/STRONG&gt;, in a &lt;STRONG&gt;usable&lt;/STRONG&gt; format (not as a screenshot).&lt;BR /&gt;&lt;BR /&gt;Do not include sensitive information or anything not related to the issue or question. &lt;BR /&gt;&lt;BR /&gt;If you are unsure how to upload data please refer to &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;Want faster answers? &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 00:39:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3715479#M144614</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-02-22T00:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: I wanna show the monthly change in % - with a DAX Formula in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3716339#M144651</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="550306" data-lia-user-login="LTi" class="lia-mention lia-mention-user"&gt;LTi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope all is going well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on your description, I found that the formula was missing the closing bracket of the function and failed to calculate the percentage change correctly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are my adjusted measure, please try:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;% Veränderung Monat =
IF(
     ISFILTERED('Profit Share gesamt'[offerAcceptedDate2]),
     BLANK(),
     VAR _Current_Month_Profit = SUM('Profit Share gesamt'[Profit])
     VAR _PREV_MONTH_Profit =
         CALCULATE(
             SUM('Profit Share gesamt'[Profit]),
             DATEADD('Profit Share gesamt'[offerAcceptedDate2], -1, MONTH)
         )
     VAR _Change = _Current_Month_Profit - _PREV_MONTH_Profit
     RETURN
         IF(
             _PREV_MONTH_Profit = 0, BLANK(),
             DIVIDE(_Change, _PREV_MONTH_Profit)
         )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your problem cannot be solved successfully, please provide me with sample data for testing, and be careful not to include private information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your patience and waiting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yang&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let us know.&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 07:59:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3716339#M144651</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-02-22T07:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: I wanna show the monthly change in % - with a DAX Formula in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3716944#M144694</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Unternehmens ID&lt;/TD&gt;&lt;TD&gt;Closed am&lt;/TD&gt;&lt;TD&gt;offerAcceptedDate2&lt;/TD&gt;&lt;TD&gt;Sales MA&lt;/TD&gt;&lt;TD&gt;Sales Team Name&lt;/TD&gt;&lt;TD&gt;Unternehmensname&lt;/TD&gt;&lt;TD&gt;Umsatz&lt;/TD&gt;&lt;TD&gt;Profit&lt;/TD&gt;&lt;TD&gt;Kalenderwoche (calender week)&lt;/TD&gt;&lt;TD&gt;Kalenderjahr (calendar year)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;04.01.2023&lt;/TD&gt;&lt;TD&gt;04.01.2023&lt;/TD&gt;&lt;TD&gt;Max Muster&lt;/TD&gt;&lt;TD&gt;Sales Team 1&lt;/TD&gt;&lt;TD&gt;Unternehmen A&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.611,00 €&lt;/TD&gt;&lt;TD&gt;132&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;05.01.2023&lt;/TD&gt;&lt;TD&gt;05.01.2023&lt;/TD&gt;&lt;TD&gt;Daniel Friedrich&lt;/TD&gt;&lt;TD&gt;Sales Team 2&lt;/TD&gt;&lt;TD&gt;Unternehmen B&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.799,00 €&lt;/TD&gt;&lt;TD&gt;341&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;05.01.2023&lt;/TD&gt;&lt;TD&gt;05.01.2023&lt;/TD&gt;&lt;TD&gt;Michelle Mayer&lt;/TD&gt;&lt;TD&gt;Sales Team 3&lt;/TD&gt;&lt;TD&gt;Unternehmen C&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.799,00 €&lt;/TD&gt;&lt;TD&gt;280&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;10.02.2023&lt;/TD&gt;&lt;TD&gt;10.02.2023&lt;/TD&gt;&lt;TD&gt;Max Muster&lt;/TD&gt;&lt;TD&gt;Sales Team 1&lt;/TD&gt;&lt;TD&gt;Unternehmen D&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.302,00 €&lt;/TD&gt;&lt;TD&gt;132&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;11.02.2023&lt;/TD&gt;&lt;TD&gt;11.02.2023&lt;/TD&gt;&lt;TD&gt;Michelle Mayer&lt;/TD&gt;&lt;TD&gt;Sales Team 3&lt;/TD&gt;&lt;TD&gt;Unternehmen E&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.799,00 €&lt;/TD&gt;&lt;TD&gt;160&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 22 Feb 2024 11:15:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3716944#M144694</guid>
      <dc:creator>LTi</dc:creator>
      <dc:date>2024-02-22T11:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: I wanna show the monthly change in % - with a DAX Formula in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3716950#M144695</link>
      <description>&lt;P&gt;Hi Yang, thanks for your advise but I received an error message with a note to the DateAdd. I've uploaded an example table but it is shown absolutely unformatted.&amp;nbsp; I used the table insert feature from the menue bar.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there also an Option&amp;nbsp; to upload an excel.file as well? Thanks for your support and Sorry for my bad attachment &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 11:23:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3716950#M144695</guid>
      <dc:creator>LTi</dc:creator>
      <dc:date>2024-02-22T11:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: I wanna show the monthly change in % - with a DAX Formula in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3718628#M144784</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="550306" data-lia-user-login="LTi" class="lia-mention lia-mention-user"&gt;LTi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for your reply, which is very helpful for us to solve the problem smoothly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tested it based on the example data you provided and found that the error appeared on the ISFILTERED function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This function is judged on the table or column and returns a polymerization value. However, when we calculate%, we need to calculate it one by one. At this time, the result of IsfilterEred is always a true, so the next step will not be carried out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I made some changes to this, please follow these steps:&lt;/P&gt;
&lt;P&gt;1. First of all, let's create a measure of the profit of the current month:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Current_Month_Profit = CALCULATE(SUM('Profit Share gesamt'[Profit]),MAX('Profit Share gesamt'[offerAcceptedDate2]) = 'Profit Share gesamt'[offerAcceptedDate2])&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Create a measuling value of calculating the profit of the previous month:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;_PREV_MONTH_Profit = 
var a = CALCULATE(
             SUM('Profit Share gesamt'[Profit]),
             DATEADD('Profit Share gesamt'[offerAcceptedDate2], -1, MONTH)
         )
RETURN IF(a = 0,0,a)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. Create a measuring value that calculates the difference between them:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;_Change = [Current_Month_Profit] - [_PREV_MONTH_Profit]&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. Create a measure value for%calculation:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;% Veränderung Monat = FORMAT( 
    DIVIDE([_Change],[_PREV_MONTH_Profit]), 
    "Percent")  
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;5. Finally, drag these created measurement values to the report page to display:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have other questions, please contact me at any time, thank you for your patience and cooperation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The pbix file has been attached.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yang&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let us know.&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 02:40:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3718628#M144784</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-02-23T02:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: I wanna show the monthly change in % - with a DAX Formula in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3730486#M145379</link>
      <description>&lt;P&gt;Hi Yang, sorry for my late response &amp;amp; thank you very much for your effort and your great support. Unfortunately, the measures do not yet lead to the correct results. Maybe I forgot to mention this in advance, but I work with the data slice function in power BI and if I filter on the sales employee and on a certain month then I should be able to see the profit per the selected employee in the respective month and then ideally compare it with the profit from the previous month. You should also be able to see the percentage profit share of the total profit for the selected employee and also the average growth rate of the profit. Your first measure works correctly but don't show me the correct profit value when I filter month and sales employee. Your second measure threw an error message with a note to the used DateAdd function. What can be the problem?&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 11:49:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-wanna-show-the-monthly-change-in-with-a-DAX-Formula-in-Power/m-p/3730486#M145379</guid>
      <dc:creator>LTi</dc:creator>
      <dc:date>2024-02-28T11:49:04Z</dc:date>
    </item>
  </channel>
</rss>

