<?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 for percentage values in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4753823#M182012</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1296262" data-lia-user-login="devdev" class="lia-mention lia-mention-user"&gt;devdev&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just wanted to check regarding your question. We haven’t heard back and want to ensure you're not stuck. If you need anything else or have updates to share, we’re here to help!&lt;/P&gt;
&lt;P&gt;If the previous reply resolved your issue, please consider marking it as Accepted and giving it a Kudos to help others find it easily.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it's resolved, feel free to hit Accept as Solution and drop a Kudos.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 05 Jul 2025 12:50:43 GMT</pubDate>
    <dc:creator>v-sgandrathi</dc:creator>
    <dc:date>2025-07-05T12:50:43Z</dc:date>
    <item>
      <title>DAX for percentage values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4744925#M181680</link>
      <description>&lt;P&gt;I need percentage values as described in the table in the right side&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;For example :&amp;nbsp;&lt;/P&gt;&lt;P&gt;High -cost is showing 51%. This we are getting when we divide&amp;nbsp;171,915,156 /&amp;nbsp;335,631,725&amp;nbsp;&lt;/P&gt;&lt;P&gt;Similarly Medium-cost is showing 2% . This we are getting&amp;nbsp;7,920,658 / 335,631,725&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How is this achievable using DAX?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 11:06:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4744925#M181680</guid>
      <dc:creator>devdev</dc:creator>
      <dc:date>2025-06-26T11:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for percentage values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4744939#M181681</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1296262" data-lia-user-login="devdev" class="lia-mention lia-mention-user"&gt;devdev&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following dax measure should make the calculation you need&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Percentage of Total Cost =&lt;BR /&gt;DIVIDE(&lt;BR /&gt;SUM('YourTable'[CostValue]),&lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUM('YourTable'[CostValue]),&lt;BR /&gt;ALL('YourTable'[CostCategory])&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;If it is not working, do not hesistate to show with many countries what you are trying to achieve&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 11:16:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4744939#M181681</guid>
      <dc:creator>Cookistador</dc:creator>
      <dc:date>2025-06-26T11:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for percentage values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4744959#M181684</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="400842" data-lia-user-login="Cookistador" class="lia-mention lia-mention-user"&gt;Cookistador&lt;/a&gt;&amp;nbsp;, THis is not giving correct result&lt;BR /&gt;More examples for you below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;For Europe region:&amp;nbsp;&amp;nbsp;501,679,459 /&amp;nbsp;752,307,107 gives 67%&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 11:30:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4744959#M181684</guid>
      <dc:creator>devdev</dc:creator>
      <dc:date>2025-06-26T11:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for percentage values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4745062#M181685</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1296262" data-lia-user-login="devdev" class="lia-mention lia-mention-user"&gt;devdev&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Community Forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Create New measure&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;% of Grand Total =&amp;nbsp;&lt;BR /&gt;DIVIDE(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SUM(CostTable[CostReceiving]),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;CALCULATE(SUM(CostTable[CostReceiving]), ALL(CostTable))&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Format the measure&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Select your new measure.&lt;/P&gt;
&lt;P&gt;Navigate to Measure Tools &amp;gt; Format &amp;gt; Percentage.&lt;/P&gt;
&lt;P&gt;Set it to display 2 decimal places, or adjust as needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Add the measure to the Matrix&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Drag the % of Grand Total measure into the Values area of your Matrix.&lt;/P&gt;
&lt;P&gt;This will instantly display both absolute values and percentages in separate lines for each region-category.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;I have included the PBIX file that I created using the provided sample data. Kindly review it and confirm whether it aligns with your expectations.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;If this solution worked for you, kindly mark it as Accept as Solution and feel free to give a Kudos, it would be much appreciated!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 12:23:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4745062#M181685</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-06-26T12:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for percentage values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4745094#M181688</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="882995" data-lia-user-login="v-sgandrathi" class="lia-mention lia-mention-user"&gt;v-sgandrathi&lt;/a&gt;&amp;nbsp;, I am getting this error&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;The cost receiving column has text values&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 12:43:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4745094#M181688</guid>
      <dc:creator>devdev</dc:creator>
      <dc:date>2025-06-26T12:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for percentage values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4745153#M181690</link>
      <description>&lt;P&gt;&lt;SPAN&gt;% of Grand Total =&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DIVIDE(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SUM(CostTable[CostReceiving]),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;CALCULATE(SUM(CostTable[CostReceiving]), ALL(CostTable[Cost Sending]))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I hope I typed the column name corectly, you do not want to remove all filters&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If it works, please give kudos and mark as a solution&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 13:10:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4745153#M181690</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-06-26T13:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for percentage values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4745162#M181692</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287762" data-lia-user-login="FBergamaschi" class="lia-mention lia-mention-user"&gt;FBergamaschi&lt;/a&gt;&amp;nbsp;, This doesnt work as well&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 13:14:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4745162#M181692</guid>
      <dc:creator>devdev</dc:creator>
      <dc:date>2025-06-26T13:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for percentage values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4745189#M181698</link>
      <description>&lt;P&gt;&lt;SPAN&gt;% of Grand Total =&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DIVIDE(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SUM(CostTable[CostReceiving]),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;CALCULATE(SUM(CostTable[CostReceiving]), ALL(CostTable[Cost Sending]), ALL( CostTable[Cost Receiving]))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sorry I had forgotten another filter to remove&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If it works, please give kudos and mark as a solution, if it does not please specify all the columns that are grouped in Filters, Rows and columns section of the pivot table&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 13:24:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4745189#M181698</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-06-26T13:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for percentage values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4747508#M181807</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1296262" data-lia-user-login="devdev" class="lia-mention lia-mention-user"&gt;devdev&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Has your issue been resolved?&lt;BR /&gt;If the response provided by&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287762" data-lia-user-login="FBergamaschi" class="lia-mention lia-mention-user"&gt;FBergamaschi&lt;/a&gt;&amp;nbsp; addressed your query, could you please confirm? It helps us ensure that the solutions provided are effective and beneficial for everyone.&lt;/P&gt;
&lt;P&gt;If yes, kindly accept the useful reply as a solution and give us Kudos. It would be appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your understanding!&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Jun 2025 09:35:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4747508#M181807</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-06-29T09:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for percentage values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4750750#M181913</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1296262" data-lia-user-login="devdev" class="lia-mention lia-mention-user"&gt;devdev&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;We wanted to check if you had a chance to review our last reply. Let us know if it helped or if you need more guidance, we're always happy to help further.&lt;BR /&gt;&lt;BR /&gt;Looking forward to hearing from you!&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 09:34:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4750750#M181913</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-07-02T09:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for percentage values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4753823#M182012</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1296262" data-lia-user-login="devdev" class="lia-mention lia-mention-user"&gt;devdev&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just wanted to check regarding your question. We haven’t heard back and want to ensure you're not stuck. If you need anything else or have updates to share, we’re here to help!&lt;/P&gt;
&lt;P&gt;If the previous reply resolved your issue, please consider marking it as Accepted and giving it a Kudos to help others find it easily.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it's resolved, feel free to hit Accept as Solution and drop a Kudos.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Jul 2025 12:50:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-percentage-values/m-p/4753823#M182012</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-07-05T12:50:43Z</dc:date>
    </item>
  </channel>
</rss>

