<?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: Running Total in not giving correct total in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-in-not-giving-correct-total/m-p/3899295#M151962</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;I don't know what you are trying to achieve. If you look at the January column, or any of the month columns, you can see that it is a running total and that the row total equals the last day of that month. So that is the total up until that point. If you follow the matrix from January 1 down the column then up to February and down that column and repeat for the entire matrix, you will see that the measure is consistently additive and tracking the running total correctly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Going across, the totals are again the running total up until that day. So December 1 is the same as the total for the Day 1 row. This all makes perfect sense in terms of what is going on here but obviously this is not what you want. So please help me understand what you want.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want the total to sum the individual running total rows or columns then you would use the standard technique:&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>Tue, 07 May 2024 14:30:05 GMT</pubDate>
    <dc:creator>Greg_Deckler</dc:creator>
    <dc:date>2024-05-07T14:30:05Z</dc:date>
    <item>
      <title>Running Total in not giving correct total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-in-not-giving-correct-total/m-p/3896611#M151862</link>
      <description>&lt;P&gt;Hi Everyone,&lt;BR /&gt;&lt;BR /&gt;I am using Matrix visual&lt;BR /&gt;in Rows I am using DAY (not date)&lt;BR /&gt;in Columns I am using Month&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Running_Total = 
CALCULATE(
   SUM(vw_Document[Dollars]),   
    DATESMTD(vw_Document[Date].[Date]) 
)&lt;/LI-CODE&gt;&lt;P&gt;I am using following measure to Calculate Running Total.&lt;BR /&gt;&lt;BR /&gt;which is working fine at Matrix level, but the Total it is displaying it is basically repeating the numbers from December. and Grand Total is repeating the numbers from 31st.&lt;BR /&gt;It is not actually calculating the sum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;What I am looking for is like given below.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;I will put DAY in Rows then it will provide me the Sum of Running total of my sales for Last year.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 20:34:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-in-not-giving-correct-total/m-p/3896611#M151862</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-05-06T20:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total in not giving correct total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-in-not-giving-correct-total/m-p/3896618#M151864</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;Try this:&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Better-Running-Total/m-p/2755666#M885" target="_blank"&gt;Better Running Total - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or maybe:&lt;/P&gt;
&lt;P&gt;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>Mon, 06 May 2024 20:36:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-in-not-giving-correct-total/m-p/3896618#M151864</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-05-06T20:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total in not giving correct total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-in-not-giving-correct-total/m-p/3899170#M151955</link>
      <description>&lt;P&gt;&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; Thank you for reply&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I just added one extra column DAY as this is required in my case. I placed on page 2 of the attached file. and Total is not correct.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Your support will be great.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.fabric.microsoft.com/oxcrx34285/attachments/oxcrx34285/QuickMeasuresGallery/1084/1/Better%20Running%20Total.pbix" target="_blank" rel="noopener"&gt;PBIX file Download from Here&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 13:47:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-in-not-giving-correct-total/m-p/3899170#M151955</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-05-07T13:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total in not giving correct total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-in-not-giving-correct-total/m-p/3899295#M151962</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;I don't know what you are trying to achieve. If you look at the January column, or any of the month columns, you can see that it is a running total and that the row total equals the last day of that month. So that is the total up until that point. If you follow the matrix from January 1 down the column then up to February and down that column and repeat for the entire matrix, you will see that the measure is consistently additive and tracking the running total correctly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Going across, the totals are again the running total up until that day. So December 1 is the same as the total for the Day 1 row. This all makes perfect sense in terms of what is going on here but obviously this is not what you want. So please help me understand what you want.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want the total to sum the individual running total rows or columns then you would use the standard technique:&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>Tue, 07 May 2024 14:30:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-in-not-giving-correct-total/m-p/3899295#M151962</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-05-07T14:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total in not giving correct total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-in-not-giving-correct-total/m-p/3899403#M151968</link>
      <description>&lt;P&gt;&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;Thank you for your reply&lt;BR /&gt;&lt;BR /&gt;This exactly what I am looking for&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but Matrix visual is giving me the result like below&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 15:05:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-in-not-giving-correct-total/m-p/3899403#M151968</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-05-07T15:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total in not giving correct total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-in-not-giving-correct-total/m-p/3899463#M151970</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;Right, that's the classic measure total problem and I provided the link on how to fix it.&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 15:27:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-in-not-giving-correct-total/m-p/3899463#M151970</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-05-07T15:27:31Z</dc:date>
    </item>
  </channel>
</rss>

