<?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: SUMX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX/m-p/4886733#M186081</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="394088" data-lia-user-login="DenbyG" class="lia-mention lia-mention-user"&gt;DenbyG&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Total Funding for A, B, C =
CALCULATE(
    SUM(Employers[Total]),
    Employers[Employer] IN {"Employer A", "Employer B", "Employer C"}
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SUM(Employers[Total]) adds up the values in the Total column.&lt;BR /&gt;CALCULATE changes the filter context so it only includes rows where Employer is one of the three specified.&lt;BR /&gt;The IN operator makes it easy to check multiple values.&lt;/P&gt;&lt;P&gt;--------------------------------&lt;/P&gt;&lt;P&gt;I hope this helps, please give kudos and mark as solved if it does!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Connect with me on &lt;/SPAN&gt;&lt;A href="https://www.linkedin.com/in/alex-ward-30966b4b/" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;LinkedIn&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Subscribe to my &lt;/SPAN&gt;&lt;A href="https://www.youtube.com/@AlexTechShed" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;YouTube channel&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt; for Fabric/Power Platform related content!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Nov 2025 14:43:55 GMT</pubDate>
    <dc:creator>wardy912</dc:creator>
    <dc:date>2025-11-26T14:43:55Z</dc:date>
    <item>
      <title>SUMX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX/m-p/4886476#M186078</link>
      <description>&lt;P&gt;Good Morning,&lt;/P&gt;&lt;P&gt;I'm struggling with a simple calculation in Power Bi. I have a large table of employers. There is a column for each month of the year and the sum of funding for each month, and then there is a total column, which totals all funding for each employer. I would like to get the total sum for 3 specific employers, who I shall call, Employer A, Employer B and Employer C. Could someone help with the measure I need to achieve this? Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 10:18:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX/m-p/4886476#M186078</guid>
      <dc:creator>DenbyG</dc:creator>
      <dc:date>2025-11-26T10:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX/m-p/4886547#M186079</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="394088" data-lia-user-login="DenbyG" class="lia-mention lia-mention-user"&gt;DenbyG&lt;/a&gt;&amp;nbsp;, Create a measure like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Calculate(sum(Fact[Value]), filter(Fact, Fact[Employer] in {"Employer 1","Employer 2","Employer 3"}))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or with joined dim&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Calculate(sum(Fact[Value]), filter(Dim, Dim[Employer] in {"Employer 1","Employer 2","Employer 3"}))&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Need the same value in when use employeer in group by&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Calculate(sum(Fact[Value]),&amp;nbsp; Fact[Employer] in {"Employer 1","Employer 2","Employer 3"})&lt;BR /&gt;&lt;BR /&gt;in needed refer:&amp;nbsp;&lt;SPAN&gt;Difference in filtering data in CALCULATE with and without FILTER&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="https://youtu.be/KDcmzwgPvXQ" target="_blank"&gt;https://youtu.be/KDcmzwgPvXQ&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 11:09:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX/m-p/4886547#M186079</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2025-11-26T11:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX/m-p/4886733#M186081</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="394088" data-lia-user-login="DenbyG" class="lia-mention lia-mention-user"&gt;DenbyG&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Total Funding for A, B, C =
CALCULATE(
    SUM(Employers[Total]),
    Employers[Employer] IN {"Employer A", "Employer B", "Employer C"}
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SUM(Employers[Total]) adds up the values in the Total column.&lt;BR /&gt;CALCULATE changes the filter context so it only includes rows where Employer is one of the three specified.&lt;BR /&gt;The IN operator makes it easy to check multiple values.&lt;/P&gt;&lt;P&gt;--------------------------------&lt;/P&gt;&lt;P&gt;I hope this helps, please give kudos and mark as solved if it does!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Connect with me on &lt;/SPAN&gt;&lt;A href="https://www.linkedin.com/in/alex-ward-30966b4b/" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;LinkedIn&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Subscribe to my &lt;/SPAN&gt;&lt;A href="https://www.youtube.com/@AlexTechShed" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;YouTube channel&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt; for Fabric/Power Platform related content!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 14:43:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX/m-p/4886733#M186081</guid>
      <dc:creator>wardy912</dc:creator>
      <dc:date>2025-11-26T14:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX/m-p/4886874#M186087</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="394088" data-lia-user-login="DenbyG" class="lia-mention lia-mention-user"&gt;DenbyG&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;try measure below:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Total Funding Selected Employers = 
CALCULATE(
    SUM('Employers'[Funding]),
    FILTER(
        'Employers',
        'Employers'[Employer Name] = "Employer A" ||
        'Employers'[Employer Name] = "Employer B" ||
        'Employers'[Employer Name] = "Employer C"
    )
)&lt;/LI-CODE&gt;&lt;P&gt;Please give kudos or mark it as solution once confirmed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Praful&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 17:24:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX/m-p/4886874#M186087</guid>
      <dc:creator>Praful_Potphode</dc:creator>
      <dc:date>2025-11-26T17:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX/m-p/4887193#M186095</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="394088" data-lia-user-login="DenbyG" class="lia-mention lia-mention-user"&gt;DenbyG&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TotalFunding_ABC = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUM('Employers'[Total]),&lt;BR /&gt;'Employers'[Employer] IN {"Employer A", "Employer B", "Employer C"}&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this answer helped, please click Kudos or Accept as Solution.&lt;BR /&gt;-Kedar&lt;BR /&gt;LinkedIn: &lt;A href="https://www.linkedin.com/in/kedar-pande" target="_blank"&gt;https://www.linkedin.com/in/kedar-pande&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 05:47:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX/m-p/4887193#M186095</guid>
      <dc:creator>Kedar_Pande</dc:creator>
      <dc:date>2025-11-27T05:47:10Z</dc:date>
    </item>
  </channel>
</rss>

