<?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: Incorrect Achievement &amp;amp; Growth Percentage in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Achievement-amp-Growth-Percentage/m-p/4404111#M174835</link>
    <description>&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;&lt;SPAN&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="859703" data-lia-user-login="proavinash" class="lia-mention lia-mention-user"&gt;proavinash&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Thanks for reaching out to the Microsoft fabric community forum.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Regarding the issue you raised, my solution is as follows:&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;The main reason for the issue is that the calculated column automatically uses the SUM aggregation method, and there is a particular column used as a filter in the visual object. This filter in the visual object does not meet our requirements. As shown in my test data, the calculated results do not meet our needs:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;You can try the following three solutions:&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial;"&gt;&lt;SPAN&gt;1.&lt;/SPAN&gt;&lt;SPAN&gt;Use the following calculated column and change the aggregation method to MAX:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column =
DIVIDE (
    CALCULATE (
        SUM ( 'RCHGTarget'[Ach_Jan251] ),
        ALLEXCEPT ( 'RCHGTarget', 'RCHGTarget'[PARTICULAR] )
    ),
    CALCULATE (
        SUM ( 'RCHGTarget'[Jan'25] ),
        ALLEXCEPT ( 'RCHGTarget', 'RCHGTarget'[PARTICULAR] )
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial;"&gt;&lt;SPAN&gt;2.&lt;/SPAN&gt;&lt;SPAN&gt;Use visual object calculations: &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;However, this can only be used for that specific visual object and cannot be called later.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial;"&gt;&lt;SPAN&gt;3.&lt;/SPAN&gt;&lt;SPAN&gt;Use the following measure:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = DIVIDE(SUM(RCHGTarget[Ach_Jan251]),SUM('RCHGTarget'[Jan'25]))&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;This solution is the most effective, as the measure depends on context changes.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Please find the attached pbix relevant to the case.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Best Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Leroy Lu&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider Accept it&lt;EM&gt;&lt;STRONG&gt; as the solution &lt;/STRONG&gt;&lt;/EM&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
    <pubDate>Tue, 11 Feb 2025 03:17:59 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-02-11T03:17:59Z</dc:date>
    <item>
      <title>Incorrect Achievement &amp; Growth Percentage</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Achievement-amp-Growth-Percentage/m-p/4403269#M174789</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;there are 2 table table first is correct and 2nd is showing incorrect result when calculation in power bi i am using below dax formula&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;%'Ach'Jan25 =&lt;/SPAN&gt; &lt;SPAN&gt;IFERROR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;RCHGTarget&lt;/SPAN&gt;&lt;SPAN&gt;[Ach_Jan25]&lt;/SPAN&gt;&lt;SPAN&gt;/&lt;/SPAN&gt;&lt;SPAN&gt;RCHGTarget&lt;/SPAN&gt;&lt;SPAN&gt;[Jan'25]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;%'Grth'Jan =&lt;/SPAN&gt; &lt;SPAN&gt;IFERROR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;RCHGTarget&lt;/SPAN&gt;&lt;SPAN&gt;[Ach_Jan25]&lt;/SPAN&gt;&lt;SPAN&gt;/&lt;/SPAN&gt;&lt;SPAN&gt;RCHGTarget&lt;/SPAN&gt;&lt;SPAN&gt;[Ach_Jan24]&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Ach_Jan25 =&lt;/SPAN&gt; &lt;SPAN&gt;IFERROR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SaleDump&lt;/SPAN&gt;&lt;SPAN&gt;[Value_MN]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SaleDump&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;SaleDump&lt;/SPAN&gt;&lt;SPAN&gt;[Concat]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;RCHGTarget&lt;/SPAN&gt;&lt;SPAN&gt;[Concatch]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;SaleDump&lt;/SPAN&gt;&lt;SPAN&gt;[Year]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"2025"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;SaleDump&lt;/SPAN&gt;&lt;SPAN&gt;[Month]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"Jan"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;SaleDump&lt;/SPAN&gt;&lt;SPAN&gt;[Spill over]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"No"&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Ach_Jan24 = &lt;/SPAN&gt;&lt;SPAN&gt;IFERROR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(SaleDump[Value_MN]),&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(SaleDump,SaleDump[Concat]=RCHGTarget[Concatch] &amp;amp;&amp;amp; SaleDump[Year]=&lt;/SPAN&gt;&lt;SPAN&gt;"2024"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; SaleDump[Month]=&lt;/SPAN&gt;&lt;SPAN&gt;"Jan"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; SaleDump[Spill over]=&lt;/SPAN&gt;&lt;SPAN&gt;"No"&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 10 Feb 2025 15:54:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Achievement-amp-Growth-Percentage/m-p/4403269#M174789</guid>
      <dc:creator>proavinash</dc:creator>
      <dc:date>2025-02-10T15:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect Achievement &amp; Growth Percentage</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Achievement-amp-Growth-Percentage/m-p/4404111#M174835</link>
      <description>&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;&lt;SPAN&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="859703" data-lia-user-login="proavinash" class="lia-mention lia-mention-user"&gt;proavinash&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Thanks for reaching out to the Microsoft fabric community forum.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Regarding the issue you raised, my solution is as follows:&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;The main reason for the issue is that the calculated column automatically uses the SUM aggregation method, and there is a particular column used as a filter in the visual object. This filter in the visual object does not meet our requirements. As shown in my test data, the calculated results do not meet our needs:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;You can try the following three solutions:&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial;"&gt;&lt;SPAN&gt;1.&lt;/SPAN&gt;&lt;SPAN&gt;Use the following calculated column and change the aggregation method to MAX:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column =
DIVIDE (
    CALCULATE (
        SUM ( 'RCHGTarget'[Ach_Jan251] ),
        ALLEXCEPT ( 'RCHGTarget', 'RCHGTarget'[PARTICULAR] )
    ),
    CALCULATE (
        SUM ( 'RCHGTarget'[Jan'25] ),
        ALLEXCEPT ( 'RCHGTarget', 'RCHGTarget'[PARTICULAR] )
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial;"&gt;&lt;SPAN&gt;2.&lt;/SPAN&gt;&lt;SPAN&gt;Use visual object calculations: &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;However, this can only be used for that specific visual object and cannot be called later.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial;"&gt;&lt;SPAN&gt;3.&lt;/SPAN&gt;&lt;SPAN&gt;Use the following measure:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = DIVIDE(SUM(RCHGTarget[Ach_Jan251]),SUM('RCHGTarget'[Jan'25]))&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;This solution is the most effective, as the measure depends on context changes.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Please find the attached pbix relevant to the case.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Best Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Leroy Lu&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider Accept it&lt;EM&gt;&lt;STRONG&gt; as the solution &lt;/STRONG&gt;&lt;/EM&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2025 03:17:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Achievement-amp-Growth-Percentage/m-p/4404111#M174835</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-02-11T03:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect Achievement &amp; Growth Percentage</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Achievement-amp-Growth-Percentage/m-p/4407354#M174998</link>
      <description>&lt;P&gt;Thanks to reply, but not working as i want , please don't considere it as negative , please understand my problem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have 2 table , 1 is Salesdump, and other is RCHGTarget,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Salesdump table has all dump related fileds including sales value and quantity,&lt;/P&gt;&lt;P&gt;and Target table has Target,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how i formulation of tracking,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i prepare a unique filed in both table by concatinate, Channel-Region-Zone&amp;nbsp; etc. like below example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Concatch&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Domestic-Project-COMM-North-NCR&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Domestic-Project-COMM-North-RAJASTHAN&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Domestic-Project-COMM-North-UP East&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Domestic-Project-COMM-North-UP NORTH&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Domestic-Project-COMM-North-Up West &amp;amp; Uk&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Domestic-Project-COMM-East-JOB&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Domestic-Project-COMM-East-NE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Domestic-Project-COMM-East-WB&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in which target already inbuilt not formulated , and sales achievement is formulated as give in formula&lt;/P&gt;&lt;P&gt;and after this i have applied this in matrix , and achievement % , and growth % by calculation seperatly as given above formula.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so the indivial ach % &amp;amp; growth % near about correct but total not correct.&lt;/P&gt;&lt;P&gt;full table below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 16:40:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Achievement-amp-Growth-Percentage/m-p/4407354#M174998</guid>
      <dc:creator>proavinash</dc:creator>
      <dc:date>2025-02-12T16:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect Achievement &amp; Growth Percentage</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Achievement-amp-Growth-Percentage/m-p/4408861#M175076</link>
      <description>&lt;P&gt;after deep study with you solution i found its working , when used you pbix file as referenece.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2025 10:18:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Achievement-amp-Growth-Percentage/m-p/4408861#M175076</guid>
      <dc:creator>proavinash</dc:creator>
      <dc:date>2025-02-13T10:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect Achievement &amp; Growth Percentage</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Achievement-amp-Growth-Percentage/m-p/4418637#M175452</link>
      <description>&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="859703" data-lia-user-login="proavinash" class="lia-mention lia-mention-user"&gt;proavinash&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I am glad that my answer could help you, and I appreciate you accepting my answer as the solution. This recognition of my efforts also helps others in the community with similar issues find solutions more quickly.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;If you encounter any problems in the future, feel free to share them again.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Have a great day!&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Best Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Leroy Lu&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 02:19:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Achievement-amp-Growth-Percentage/m-p/4418637#M175452</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-02-20T02:19:47Z</dc:date>
    </item>
  </channel>
</rss>

