<?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: Calculate sum of the max values (show in rows) in a subtotal/total in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/1424511#M26533</link>
    <description>&lt;P&gt;I went trough the information and links you provided&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;, they are thorough and extremely helpful !&lt;/P&gt;&lt;P&gt;I'm seeing solution on similar concerns I had with other matrix.&lt;/P&gt;&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Oct 2020 13:58:29 GMT</pubDate>
    <dc:creator>FloUL</dc:creator>
    <dc:date>2020-10-09T13:58:29Z</dc:date>
    <item>
      <title>Calculate sum of the max values (show in rows) in a subtotal/total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/1421908#M26449</link>
      <description>&lt;P&gt;Hi, please anyone know how to show, in the total/subtotal of a specific column (in my case column "Max de Inscrits") the sum of the max values showed in each row of a matrix ? I read several posts but still can't resolve this.&lt;/P&gt;&lt;P&gt;Column&amp;nbsp;"Max de Inscrits" is an aggregate (maximum values).&lt;/P&gt;&lt;P&gt;As shown in picture below, instead of showing &lt;STRONG&gt;10&lt;/STRONG&gt;, I would like the total to show the sum of rows values (6+2+3+3+10) which is &lt;STRONG&gt;24&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;In my case, the subtotal "Directeur de recherche" should also show 24 instead of 10.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance !&lt;/P&gt;&lt;P&gt;Flora&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 16:49:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/1421908#M26449</guid>
      <dc:creator>FloUL</dc:creator>
      <dc:date>2020-10-08T16:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of the max values (show in rows) in a subtotal/total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/1421987#M26452</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="263688" data-lia-user-login="FloUL" class="lia-mention lia-mention-user"&gt;FloUL&lt;/a&gt;&amp;nbsp;- Hard to tell but here are a number of things to read:&lt;/P&gt;
&lt;P&gt;Could be a measure aggregation problem. See my blog article about that here: &lt;A href="https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The pattern is: &lt;BR /&gt;MinScoreMeasure = MINX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])&lt;BR /&gt;MaxScoreMeasure = MAXX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])&lt;BR /&gt;AvgScoreMeasure = AVERAGEX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])&lt;BR /&gt;etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could be a measure totals problem. Very common. See my post about it here: &lt;A href="https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376" target="_blank"&gt;https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907" target="_blank"&gt;https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or you might need MM3TR&amp;amp;R -&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/Quick-Measures-Gallery/Matrix-Measure-Total-Triple-Threat-Rock-amp-Roll/m-p/411443#M150" target="_blank"&gt;https://community.powerbi.com/t5/Quick-Measures-Gallery/Matrix-Measure-Total-Triple-Threat-Rock-amp-Roll/m-p/411443#M150&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Otherwise,&amp;nbsp;Not really enough information to go on, please first check if your issue is a common issue listed here: &lt;A href="https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Also, please see this post regarding How to Get Your Question Answered Quickly: &lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The most important parts are:&lt;BR /&gt;1. Sample data as text, use the table tool in the editing bar&lt;BR /&gt;2. Expected output from sample data&lt;BR /&gt;3. Explanation in words of how to get from 1. to 2.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 17:45:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/1421987#M26452</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-10-08T17:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of the max values (show in rows) in a subtotal/total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/1422008#M26454</link>
      <description>&lt;P&gt;You must create a measure to do this&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="263688" data-lia-user-login="FloUL" class="lia-mention lia-mention-user"&gt;FloUL&lt;/a&gt;.&amp;nbsp;This is one way:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;DIV style="background: #F5F2F0; border: 1px solid black; border-radius: 10px; padding: 10px 10px 10px 10px; font-family: 'Lucida Console', Courier, monospace; margin: 10px 10px 10px 10px;"&gt;&lt;FONT face="courier new,courier" size="2"&gt; Max&amp;nbsp;Sales&amp;nbsp;=&lt;BR /&gt;&lt;SPAN class="Keyword" style="color: #035aca;"&gt;SUMX&lt;/SPAN&gt;&lt;SPAN class="Parenthesis" style="color: #808080;"&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="indent4"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="Keyword" style="color: #035aca;"&gt;ADDCOLUMNS&lt;/SPAN&gt;&lt;SPAN class="Parenthesis" style="color: #808080;"&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="indent8"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="Keyword" style="color: #035aca;"&gt;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN class="Parenthesis" style="color: #808080;"&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="indent8"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="indent4"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;Sales,&lt;BR /&gt;&lt;SPAN class="indent8"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="indent4"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;Sales[Customer]&lt;BR /&gt;&lt;SPAN class="indent8"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="Parenthesis" style="color: #808080;"&gt;)&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN class="indent8"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="StringLiteral" style="color: #d93124;"&gt;"MaxCustomer"&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN class="indent8"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="indent4"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="Keyword" style="color: #035aca;"&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN class="Parenthesis" style="color: #808080;"&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="indent8"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="indent8"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="Keyword" style="color: #035aca;"&gt;MAX&lt;/SPAN&gt;&lt;SPAN class="Parenthesis" style="color: #808080;"&gt;(&lt;/SPAN&gt;&amp;nbsp;Sales[Value]&amp;nbsp;&lt;SPAN class="Parenthesis" style="color: #808080;"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="indent8"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="indent4"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="Parenthesis" style="color: #808080;"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="indent4"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="Parenthesis" style="color: #808080;"&gt;)&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN class="indent4"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;[MaxCustomer]&lt;BR /&gt;&lt;SPAN class="Parenthesis" style="color: #808080;"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;P&gt;If you need more help, please provide some data to work with.&lt;/P&gt;
&lt;P&gt;How to get good help fast. Help us help you.&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank" rel="noopener"&gt;How to Get Your Question Answered Quickly&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank" rel="noopener"&gt;How to provide sample data in the Power BI Forum&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, this is the fake data I created so you can see it is pulling the MAX of each customer.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 17:55:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/1422008#M26454</guid>
      <dc:creator>edhans</dc:creator>
      <dc:date>2020-10-08T17:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of the max values (show in rows) in a subtotal/total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/1422107#M26462</link>
      <description>&lt;P&gt;The approach you described&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24715" data-lia-user-login="edhans" class="lia-mention lia-mention-user"&gt;edhans&lt;/a&gt;&amp;nbsp;is exact and work like a charm !&lt;/P&gt;&lt;P&gt;I applied it and now the result show 24. Thank you !&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 18:55:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/1422107#M26462</guid>
      <dc:creator>FloUL</dc:creator>
      <dc:date>2020-10-08T18:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of the max values (show in rows) in a subtotal/total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/1422235#M26471</link>
      <description>&lt;P&gt;Great&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="263688" data-lia-user-login="FloUL" class="lia-mention lia-mention-user"&gt;FloUL&lt;/a&gt;&amp;nbsp;- consider that a DAX pattern for future use. Also look at the links&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;sent which are a bit more generic, but go into more detail on the common "my totals aren't adding up the values in the table" problem.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Glad I was able to help!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 20:20:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/1422235#M26471</guid>
      <dc:creator>edhans</dc:creator>
      <dc:date>2020-10-08T20:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of the max values (show in rows) in a subtotal/total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/1424511#M26533</link>
      <description>&lt;P&gt;I went trough the information and links you provided&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;, they are thorough and extremely helpful !&lt;/P&gt;&lt;P&gt;I'm seeing solution on similar concerns I had with other matrix.&lt;/P&gt;&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2020 13:58:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/1424511#M26533</guid>
      <dc:creator>FloUL</dc:creator>
      <dc:date>2020-10-09T13:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of the max values (show in rows) in a subtotal/total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/2812495#M89065</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24715" data-lia-user-login="edhans" class="lia-mention lia-mention-user"&gt;edhans&lt;/a&gt;&amp;nbsp;, this solution is working like a charm. Thank you.&amp;nbsp;&lt;BR /&gt;However, this doesn't work when I select only the month from the slicer. So, I have three slicers, One for dates, one for the months, and one for years. The thing is when I select the days, it's giving me an accurate sum but when I select only a Month or a year, it gives me an inaccurate sum. These slicers are using the same date column and I have used the hierarchy of Months in the second and the hierarchy of years from the date column in the third slicers. So, basically, these three slicers are using the same date column but with hierarchies&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;How to resolve this?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you!&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Majid Ali&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 23:09:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/2812495#M89065</guid>
      <dc:creator>developer-yit2</dc:creator>
      <dc:date>2022-10-02T23:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of the max values (show in rows) in a subtotal/total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/2812511#M89067</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="405535" data-lia-user-login="developer-yit2" class="lia-mention lia-mention-user"&gt;developer-yit2&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;you should probably create a new thread/question for this as this question was answered over 2 years ago, and provide sufficent information. Instructions on doing that are below.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hierarchies are not true stuctures in the data, so if you select January in your slicers above and nothing in Year, it will aaggregate all of the January's together across 2022, 2021, and 2020, which is usually nonsensical unless you are looking at annual sales trends.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to get good help fast. Help us help you.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;A href="https://www.sqlbi.com/blog/alberto/2021/01/22/on-how-to-ask-a-technical-question-if-you-really-want-an-answer/" target="_blank" rel="noopener"&gt;How To Ask A Technical Question If you Really Want An Answer&lt;/A&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank" rel="noopener"&gt;How to Get Your Question Answered Quickly&lt;/A&gt; - Give us a good and concise explanation&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank" rel="noopener"&gt;How to provide sample data in the Power BI Forum&lt;/A&gt; - Provide data in a table format per the link, or share an Excel/CSV file via OneDrive, Dropbox, etc.. Provide expected output using a screenshot of Excel or other image. Do not provide a screenshot of the source data. I cannot paste an image into Power BI tables.&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 23:22:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/2812511#M89067</guid>
      <dc:creator>edhans</dc:creator>
      <dc:date>2022-10-02T23:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of the max values (show in rows) in a subtotal/total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/2812559#M89069</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24715" data-lia-user-login="edhans" class="lia-mention lia-mention-user"&gt;edhans&lt;/a&gt;&amp;nbsp; for a quick response.&amp;nbsp;&lt;BR /&gt;Yes, you are right I need to select the year but even when I select a year, it just shows the sum of each month's max value. and If I select a month, it just shows the sum of each day's max value.&lt;BR /&gt;I have created another thread. Please let me know your thoughts over there.&amp;nbsp;&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Desktop/Calculate-sum-of-Max-values-in-a-matrix-row-total/td-p/2812536" target="_blank"&gt;https://community.powerbi.com/t5/Desktop/Calculate-sum-of-Max-values-in-a-matrix-row-total/td-p/2812536&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 00:34:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/2812559#M89069</guid>
      <dc:creator>developer-yit2</dc:creator>
      <dc:date>2022-10-03T00:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of the max values (show in rows) in a subtotal/total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/4070535#M161600</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24715" data-lia-user-login="edhans" class="lia-mention lia-mention-user"&gt;edhans&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the same problem and thank you it works well for the subtotal&lt;/P&gt;&lt;P&gt;however I am wondering if we can create a subtotal by 2 different column?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;in the case&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="263688" data-lia-user-login="FloUL" class="lia-mention lia-mention-user"&gt;FloUL&lt;/a&gt;&amp;nbsp;provided,&amp;nbsp;&lt;/P&gt;&lt;P&gt;the solution can get the subtotal of&amp;nbsp;&lt;SPAN&gt;"Directeur de recherche"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;any solution can also get the subtotal of "Doctorat"?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 06:35:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-the-max-values-show-in-rows-in-a-subtotal-total/m-p/4070535#M161600</guid>
      <dc:creator>cc1026ly</dc:creator>
      <dc:date>2024-07-31T06:35:00Z</dc:date>
    </item>
  </channel>
</rss>

