<?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 Sumar el total de los valores máximos de la tabla in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sumar-el-total-de-los-valores-m%C3%A1ximos-de-la-tabla/m-p/4049219#M160628</link>
    <description>&lt;P&gt;Tengo la siguiente tabla en la cual son los valores maximos de cada columna, en el cual requiere la suma de esos valores en el TOTAL&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jul 2024 18:24:18 GMT</pubDate>
    <dc:creator>Sebaskas</dc:creator>
    <dc:date>2024-07-18T18:24:18Z</dc:date>
    <item>
      <title>Sumar el total de los valores máximos de la tabla</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sumar-el-total-de-los-valores-m%C3%A1ximos-de-la-tabla/m-p/4049219#M160628</link>
      <description>&lt;P&gt;Tengo la siguiente tabla en la cual son los valores maximos de cada columna, en el cual requiere la suma de esos valores en el TOTAL&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2024 18:24:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sumar-el-total-de-los-valores-m%C3%A1ximos-de-la-tabla/m-p/4049219#M160628</guid>
      <dc:creator>Sebaskas</dc:creator>
      <dc:date>2024-07-18T18:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Sumar el total de los valores máximos de la tabla</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sumar-el-total-de-los-valores-m%C3%A1ximos-de-la-tabla/m-p/4049999#M160664</link>
      <description>&lt;P&gt;Hi,&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="776841" data-lia-user-login="Sebaskas" class="lia-mention lia-mention-user"&gt;Sebaskas&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am glad to help you.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to your description, you want&amp;nbsp;to add the total of the maximum values in the table?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I understand you correctly, then you can refer to my solution.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you didn't give me some test data, I created a simple dataset myself:&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;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then create a Measure to calculate the sum of the maximum values and put the Measure into the matrix or Card:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SumOfMaxMonthlyTotals = 
VAR _vtable1 =
    SUMMARIZE (
        'Table2',
        'Table2'[TPARENT],
        'Table2'[Date],
        "_Sum",
            CALCULATE (
                SUM ( 'Table2'[Value] ),
                FILTER (
                    ALLSELECTED ( Table2 ),
                    'Table2'[TPARENT] = EARLIER ( Table2[TPARENT] )
                        &amp;amp;&amp;amp; MONTH ( 'Table2'[Date] ) = MONTH ( EARLIER ( 'Table2'[Date] ) )
                        &amp;amp;&amp;amp; YEAR ( 'Table2'[Date] ) = YEAR ( EARLIER ( Table2[Date] ) )
                )
            )
    )
RETURN
    SUMX (
        SUMMARIZE (
            _vtable1,
            [TPARENT],
            "_MAX", MAXX ( FILTER ( _vtable1, [TPARENT] = EARLIER ( Table2[TPARENT] ) ), [_Sum] )
        ),
        [_MAX]
    )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Fen Ling,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If this post &lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 07:00:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sumar-el-total-de-los-valores-m%C3%A1ximos-de-la-tabla/m-p/4049999#M160664</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-19T07:00:40Z</dc:date>
    </item>
  </channel>
</rss>

