<?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: Column Total Missing One Row in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Total-Missing-One-Row/m-p/2992456#M100728</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="481005" data-lia-user-login="Brad_Roberts" class="lia-mention lia-mention-user"&gt;Brad_Roberts&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to your description, you mean that the measure [1.Move-Out Data] does not total correctly in the matrix, right?&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please try to&amp;nbsp;create a measure [total_1.Move-Out Data].&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;total_1.Move-Out Data =

SUMX(

    SUMMARIZE(

        'Table',

        'Table'[RowName],

        'Table'[ColumnName],

        "total",[1.Move-Out Data] //your measure

    ),

    [total]

)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can refer to the following documents that may be helpful to you:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://archerpoint.com/how-to-make-measures-total-correctly-in-power-bi-tables/" target="_blank" rel="nofollow noopener noreferrer"&gt;How to Make Measures Total Correctly in Power BI Tables - ArcherPoint&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post &lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Dec 2022 01:56:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-12-29T01:56:56Z</dc:date>
    <item>
      <title>Column Total Missing One Row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Total-Missing-One-Row/m-p/2992316#M100715</link>
      <description>&lt;P&gt;I'm attempting to sum up Move_outs (should be -36,657, it's missing the highlight row).&amp;nbsp; Column 1.Move-Out Data pulls in Change SF &amp;lt; 0 (this works).&amp;nbsp; 1.Move-Out SF creates the total, I have these measures split out to help troubleshoot.&amp;nbsp; 1.Move-Out SF =&amp;nbsp;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;HASONEFILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Properties'&lt;/SPAN&gt;&lt;SPAN&gt;[Property]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;[1.Move-Out Data]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;values&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Properties'&lt;/SPAN&gt;&lt;SPAN&gt;[Property]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;[1.Move-Out Data]&lt;/SPAN&gt;&lt;SPAN&gt;)).&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The purple highlights are my measures:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Start SF =&amp;nbsp;&lt;SPAN&gt;calculate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;sum&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Tenancy Data'&lt;/SPAN&gt;&lt;SPAN&gt;[All Area]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;all&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Dates&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;USERELATIONSHIP&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Dates&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Inactive Dates'&lt;/SPAN&gt;&lt;SPAN&gt;[Start Date]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Change SF =&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;calculate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;sum&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Tenancy Data'&lt;/SPAN&gt;&lt;SPAN&gt;[All Area]&lt;/SPAN&gt;&lt;SPAN&gt;)) - [Start SF ]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2022 22:33:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Total-Missing-One-Row/m-p/2992316#M100715</guid>
      <dc:creator>Brad_Roberts</dc:creator>
      <dc:date>2022-12-28T22:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Column Total Missing One Row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Total-Missing-One-Row/m-p/2992321#M100716</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="481005" data-lia-user-login="Brad_Roberts" class="lia-mention lia-mention-user"&gt;Brad_Roberts&lt;/a&gt;&amp;nbsp;First, please vote for this idea: &lt;A href="https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e" target="_blank"&gt;https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This looks like 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;BR /&gt;&lt;BR /&gt;Also: &lt;A href="https://youtu.be/uXRriTN0cfY" target="_blank"&gt;https://youtu.be/uXRriTN0cfY&lt;/A&gt;&lt;BR /&gt;And: &lt;A href="https://youtu.be/n4TYhF2ARe8" target="_blank"&gt;https://youtu.be/n4TYhF2ARe8&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2022 22:45:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Total-Missing-One-Row/m-p/2992321#M100716</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-12-28T22:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Column Total Missing One Row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Total-Missing-One-Row/m-p/2992456#M100728</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="481005" data-lia-user-login="Brad_Roberts" class="lia-mention lia-mention-user"&gt;Brad_Roberts&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to your description, you mean that the measure [1.Move-Out Data] does not total correctly in the matrix, right?&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please try to&amp;nbsp;create a measure [total_1.Move-Out Data].&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;total_1.Move-Out Data =

SUMX(

    SUMMARIZE(

        'Table',

        'Table'[RowName],

        'Table'[ColumnName],

        "total",[1.Move-Out Data] //your measure

    ),

    [total]

)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can refer to the following documents that may be helpful to you:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://archerpoint.com/how-to-make-measures-total-correctly-in-power-bi-tables/" target="_blank" rel="nofollow noopener noreferrer"&gt;How to Make Measures Total Correctly in Power BI Tables - ArcherPoint&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post &lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 01:56:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Total-Missing-One-Row/m-p/2992456#M100728</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-12-29T01:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: Column Total Missing One Row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Total-Missing-One-Row/m-p/2993672#M100786</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know why 1.Move-Out Data doesn't work but I can't figure out 1.Move-out SF.&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;This solution was from the article you linked to that I was referencing before my post.&amp;nbsp; I tried your solution but it results in the same error as above...the -4,051 is left out of total.&amp;nbsp; I'm not sure why this row is different than the other rows that are included.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 16:26:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Total-Missing-One-Row/m-p/2993672#M100786</guid>
      <dc:creator>Brad_Roberts</dc:creator>
      <dc:date>2022-12-29T16:26:47Z</dc:date>
    </item>
  </channel>
</rss>

