<?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: dax formula to calculate percentage of trends in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dax-formula-to-calculate-percentage-of-trends/m-p/4346013#M172593</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="903079" data-lia-user-login="Arpita-2024" class="lia-mention lia-mention-user"&gt;Arpita-2024&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is my follow-up just to ask if the problem has been solved?&lt;/P&gt;
&lt;P&gt;If so, can you accept the correct answer as a solution or share your solution to help other members find it faster?&lt;/P&gt;
&lt;P&gt;Thank you very much for your cooperation!&lt;/P&gt;</description>
    <pubDate>Mon, 30 Dec 2024 08:30:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-12-30T08:30:29Z</dc:date>
    <item>
      <title>dax formula to calculate percentage of trends</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dax-formula-to-calculate-percentage-of-trends/m-p/4335190#M172132</link>
      <description>&lt;P&gt;i wanted to make a chart on trends of students performance,&lt;/P&gt;&lt;P&gt;category Above, At and Below and three academic year 22-23, 23-24, 24-25&lt;/P&gt;&lt;P&gt;I want percentage of above, At and Below in 3 consecutive year . 3 years of above, 3 years of at and 3 years of below&lt;/P&gt;&lt;P&gt;as count I am getting the chart but not in percentage .. need help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 13:50:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dax-formula-to-calculate-percentage-of-trends/m-p/4335190#M172132</guid>
      <dc:creator>Arpita-2024</dc:creator>
      <dc:date>2024-12-18T13:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: dax formula to calculate percentage of trends</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dax-formula-to-calculate-percentage-of-trends/m-p/4335213#M172136</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="903079" data-lia-user-login="Arpita-2024" class="lia-mention lia-mention-user"&gt;Arpita-2024&lt;/a&gt;&amp;nbsp; - Have a read through this and you'll find out how to get this question answered faster:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Get-Your-Question-Answered-Quickly/m-p/1626726#M32906" target="_blank"&gt;https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Get-Your-Question-Answered-Quickly/m-p/1626726#M32906&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 14:02:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dax-formula-to-calculate-percentage-of-trends/m-p/4335213#M172136</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-12-18T14:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: dax formula to calculate percentage of trends</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dax-formula-to-calculate-percentage-of-trends/m-p/4336079#M172175</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="903079" data-lia-user-login="Arpita-2024" class="lia-mention lia-mention-user"&gt;Arpita-2024&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;I am not sure how your semantic model is designed, below is my example.&lt;/P&gt;
&lt;P&gt;The test data is as follows.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Create a measure to calculate a percentage for each category.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Percentage = 
VAR Total =
    CALCULATE (
        SUM ( 'Table'[Count] ),
        ALLEXCEPT ( 'Table', 'Table'[Academic Year] )
    )
RETURN
    DIVIDE ( SUM ( 'Table'[Count] ), Total, 0 )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then create a chart using that measure. The result is shown below.&amp;nbsp;Hopefully this will meet your needs.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Please see the attached pbix file for reference.&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Dengliang Li&lt;BR /&gt;&lt;BR /&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2024 05:18:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dax-formula-to-calculate-percentage-of-trends/m-p/4336079#M172175</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-19T05:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: dax formula to calculate percentage of trends</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dax-formula-to-calculate-percentage-of-trends/m-p/4346013#M172593</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="903079" data-lia-user-login="Arpita-2024" class="lia-mention lia-mention-user"&gt;Arpita-2024&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is my follow-up just to ask if the problem has been solved?&lt;/P&gt;
&lt;P&gt;If so, can you accept the correct answer as a solution or share your solution to help other members find it faster?&lt;/P&gt;
&lt;P&gt;Thank you very much for your cooperation!&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2024 08:30:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dax-formula-to-calculate-percentage-of-trends/m-p/4346013#M172593</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-30T08:30:29Z</dc:date>
    </item>
  </channel>
</rss>

