<?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: How to get percentage of subtotal in a matrix ? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608450#M176404</link>
    <description>&lt;P&gt;But with those measures I get de percentage for each columns(monday,tuesday etc) and I would like to get the percentage only for subtotal, how can I do that ? thank you in advance&lt;/P&gt;</description>
    <pubDate>Thu, 13 Mar 2025 10:47:05 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-03-13T10:47:05Z</dc:date>
    <item>
      <title>How to get percentage of subtotal in a matrix ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608417#M176399</link>
      <description>&lt;P&gt;Hello everybody,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In power BI desktop I would like to get the porcentage of subotals for rows and lines.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my matrix :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I have my hours for lines, week day for columns and the count of my tickets as a value, I activate subtotal for columns and lines( in the format parameters of the matrix) and I would like to add one columns and one line(or add the percentage directly with the subttotal column and line) with the percentage for my subtotal compare to the general total. How can I do to add only one column and one line for the subtotal ? thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 10:27:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608417#M176399</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-13T10:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to get percentage of subtotal in a matrix ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608428#M176400</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;Create measures&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TotalTickets = SUM('YourTable'[TicketCount])&lt;/P&gt;
&lt;P&gt;SubtotalTickets = SUMX(ALLSELECTED('YourTable'), 'YourTable'[TicketCount])&lt;/P&gt;
&lt;P&gt;PercentageOfTotal = DIVIDE([SubtotalTickets], [TotalTickets], 0)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add the PercentageOfTotal measure to your matrix, and it will display the percentage of each subtotal compared to the total. This approach ensures that you have a dynamic calculation that respects the context of your matrix, showing the correct percentages for both rows and columns&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 10:34:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608428#M176400</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-03-13T10:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to get percentage of subtotal in a matrix ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608449#M176403</link>
      <description>&lt;P&gt;Var grandtotal=&amp;nbsp;&lt;/P&gt;&lt;P&gt;Calculate([Measure], Allselected())&lt;/P&gt;&lt;P&gt;Return&lt;/P&gt;&lt;P&gt;If(&amp;nbsp;&lt;/P&gt;&lt;P&gt;( Not Isinscope(table[month])&amp;nbsp; &amp;amp;&amp;amp; isinscope(table[hour])) ||&amp;nbsp;&lt;/P&gt;&lt;P&gt;( Isinscope(table[month])&amp;nbsp; &amp;amp;&amp;amp; not isinscope(table[hour])),&lt;/P&gt;&lt;P&gt;Format(&lt;/P&gt;&lt;P&gt;Divide([Measure], grandTotal),&lt;/P&gt;&lt;P&gt;"#%"&lt;/P&gt;&lt;P&gt;),&lt;/P&gt;&lt;P&gt;[Measure]&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 10:46:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608449#M176403</guid>
      <dc:creator>Deku</dc:creator>
      <dc:date>2025-03-13T10:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to get percentage of subtotal in a matrix ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608450#M176404</link>
      <description>&lt;P&gt;But with those measures I get de percentage for each columns(monday,tuesday etc) and I would like to get the percentage only for subtotal, how can I do that ? thank you in advance&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 10:47:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608450#M176404</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-13T10:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to get percentage of subtotal in a matrix ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608526#M176408</link>
      <description>&lt;P&gt;I get the good result but as the other solutions, I have one column for each days and I want only one column for my total, how can I choose the display of the columns ? thanks&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 11:23:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608526#M176408</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-13T11:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to get percentage of subtotal in a matrix ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608607#M176414</link>
      <description>&lt;P&gt;Can you share a image of what you want it to look like&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 12:23:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608607#M176414</guid>
      <dc:creator>Deku</dc:creator>
      <dc:date>2025-03-13T12:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to get percentage of subtotal in a matrix ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608810#M176419</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Something like with all sub percentage for the total of axis Y and the same for the the subtotal of axix X&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 14:06:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608810#M176419</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-13T14:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to get percentage of subtotal in a matrix ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608847#M176424</link>
      <description>&lt;P&gt;You can't do this with native visuals. You'd have to look at Deneb or some other custom visual&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 14:32:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-percentage-of-subtotal-in-a-matrix/m-p/4608847#M176424</guid>
      <dc:creator>Deku</dc:creator>
      <dc:date>2025-03-13T14:32:14Z</dc:date>
    </item>
  </channel>
</rss>

