<?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: Dynamic running Total in Desktop</title>
    <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4702486#M1404792</link>
    <description>&lt;P&gt;Cannot understand anything from screenshots.&amp;nbsp; Share the download link of an MS Excel file.&amp;nbsp; Show your Excel formulas there.&amp;nbsp; I will try to convert them into measures.&lt;/P&gt;</description>
    <pubDate>Thu, 22 May 2025 00:19:32 GMT</pubDate>
    <dc:creator>Ashish_Excel</dc:creator>
    <dc:date>2025-05-22T00:19:32Z</dc:date>
    <item>
      <title>Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4700131#M1404199</link>
      <description>&lt;P&gt;Hi everyone, I'm looking for help with a DAX formula in Power BI. I want to create a dynamic running total that calculates aging by amount of days. My matrix table is set up with:&lt;/P&gt;&lt;P&gt;- Customer Number, Customer Name, Invoice Number, and Invoice Date in the rows section&lt;BR /&gt;- Aging Bucket in the columns section (note that some customers can have different aging buckets, making the aging bucket dynamic)&lt;BR /&gt;- AR Balance measure in the values section&lt;/P&gt;&lt;P&gt;I'd like to add a column called "Running Total" that calculates a running total based on the change in Invoice Number, and also takes into account the dynamic aging buckets. This column should reset itself whenever the Customer Number changes and appear to the right of the matrix table. Can anyone assist me with the DAX formula for this? I'd greatly appreciate any help!&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 13:00:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4700131#M1404199</guid>
      <dc:creator>Zzzzzzz</dc:creator>
      <dc:date>2025-05-20T13:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4700142#M1404203</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1278920" data-lia-user-login="Zzzzzzz" class="lia-mention lia-mention-user"&gt;Zzzzzzz&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;use this measure&lt;/P&gt;&lt;P&gt;Running Total AR Balance =&lt;/P&gt;&lt;P&gt;VAR CurrentCustomer = MAX('Table'[Customer Number])&lt;/P&gt;&lt;P&gt;VAR CurrentInvoiceDate = MAX('Table'[Invoice Date])&lt;/P&gt;&lt;P&gt;VAR CurrentInvoiceNumber = MAX('Table'[Invoice Number])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;RETURN&lt;/P&gt;&lt;P&gt;CALCULATE(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [AR Balance],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILTER(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ALLSELECTED('Table'),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Table'[Customer Number] = CurrentCustomer &amp;amp;&amp;amp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Table'[Invoice Date] &amp;lt; CurrentInvoiceDate ||&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Table'[Invoice Date] = CurrentInvoiceDate &amp;amp;&amp;amp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Table'[Invoice Number] &amp;lt;= CurrentInvoiceNumber&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/pankajnamekar/" target="_blank"&gt;&amp;nbsp;Pankaj Namekar | LinkedIn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 13:04:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4700142#M1404203</guid>
      <dc:creator>pankajnamekar25</dc:creator>
      <dc:date>2025-05-20T13:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4700628#M1404332</link>
      <description>&lt;P&gt;i dont understand&amp;nbsp;in my columns&amp;nbsp;section i &amp;nbsp;have this&amp;nbsp;&amp;nbsp;formula there is no running&amp;nbsp;total here how will your mesuare add a running total&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Aging Bucket =&lt;/SPAN&gt; &lt;SPAN&gt;SWITCH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;TRUE&lt;/SPAN&gt;&lt;SPAN&gt;(),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;'ardet'&lt;/SPAN&gt;&lt;SPAN&gt;[LINE BALANCE]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"- 0 Days (cred)"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Days Overdue]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Not Due"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Days Overdue]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;30&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"0-30 Days"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Days Overdue]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;60&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"31-60 Days"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Days Overdue]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;90&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"61-90 Days"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Days Overdue]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;120&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"91-120 Days"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Over 120 Days"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&amp;nbsp; and don't&amp;nbsp;forget depending on how old the customer&amp;nbsp;invoice dates are that happens&amp;nbsp;on what column&amp;nbsp;of the aging bucket it shows&amp;nbsp;but i want the running total&amp;nbsp;to always&amp;nbsp;show at the end&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 May 2025 20:14:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4700628#M1404332</guid>
      <dc:creator>Zzzzzzz</dc:creator>
      <dc:date>2025-05-20T20:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4700787#M1404373</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Share some data to work with, explain the question and show the expected result.&amp;nbsp; Share data in a format that can be pasted in an MS Excel file.&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 02:54:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4700787#M1404373</guid>
      <dc:creator>Ashish_Excel</dc:creator>
      <dc:date>2025-05-21T02:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4700790#M1404374</link>
      <description>&lt;P&gt;Hi anyone have a solution?&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 02:56:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4700790#M1404374</guid>
      <dc:creator>Zzzzzzz</dc:creator>
      <dc:date>2025-05-21T02:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4700823#M1404385</link>
      <description>&lt;P&gt;here is one excel example of dynamic columns&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;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;so as you can see the running total column is always to the end of the data but the aging buckets are dynamic according to the invoice date&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 03:54:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4700823#M1404385</guid>
      <dc:creator>Zzzzzzz</dc:creator>
      <dc:date>2025-05-21T03:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4701505#M1404569</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1278920" data-lia-user-login="Zzzzzzz" class="lia-mention lia-mention-user"&gt;Zzzzzzz&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;Dynamic running total measure in Power BI that calculates the cumulative AR Balance per Customer, based on Invoice Date or Invoice Number, and takes into account the context of dynamic Aging Buckets.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;can you try this measure :&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Running Total AR = 
VAR CurrentCustomer = SELECTEDVALUE('AR Table'[Customer Number])
VAR CurrentInvoice = SELECTEDVALUE('AR Table'[Invoice Number])

RETURN
CALCULATE(
    SUM('AR Table'[AR Balance]),
    FILTER(
        ALLSELECTED('AR Table'),
        'AR Table'[Customer Number] = CurrentCustomer &amp;amp;&amp;amp;
        'AR Table'[Invoice Number] &amp;lt;= CurrentInvoice
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;Hope this helps !&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 8pt; font-family: Aptos; font-size: 12.0pt;"&gt;If this post was helpful, please consider marking &lt;SPAN&gt;Accept as solution&lt;/SPAN&gt; to assist other members in finding it more easily.&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 8pt; font-family: Aptos; font-size: 12.0pt;"&gt;If you continue to face issues, feel free to reach out to us for further assistance!&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 11:14:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4701505#M1404569</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-21T11:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4702201#M1404733</link>
      <description>&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;its not working its adding a running total after each aging bucket&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 17:23:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4702201#M1404733</guid>
      <dc:creator>Zzzzzzz</dc:creator>
      <dc:date>2025-05-21T17:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4702486#M1404792</link>
      <description>&lt;P&gt;Cannot understand anything from screenshots.&amp;nbsp; Share the download link of an MS Excel file.&amp;nbsp; Show your Excel formulas there.&amp;nbsp; I will try to convert them into measures.&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 00:19:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4702486#M1404792</guid>
      <dc:creator>Ashish_Excel</dc:creator>
      <dc:date>2025-05-22T00:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4702575#M1404813</link>
      <description>&lt;P&gt;I don't have any formula that work it needs to all be created I need an aging bucket formula that would have running Total only at the end and an ar balance formula that would put the correct values where it belongs&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 04:02:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4702575#M1404813</guid>
      <dc:creator>Zzzzzzz</dc:creator>
      <dc:date>2025-05-22T04:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4703434#M1405027</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1278920" data-lia-user-login="Zzzzzzz" class="lia-mention lia-mention-user"&gt;Zzzzzzz&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;To implement a dynamic running total of AR Balances across varying aging buckets and grouped by customer and invoice number/date, we followed a structured approach in Power BI:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1.Create a Calendar Table (for time-based calculations)&lt;BR /&gt;We used a calendar table to support time intelligence functions like running totals:&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Calendar = CALENDARAUTO()&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;We then established a relationship between:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Calendar[Date] and AR Table[Invoice Date]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This relationship enables accurate date-based filtering and aggregation.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;2. Create the Running Total Measure (by Invoice Date)&lt;BR /&gt;We defined the following DAX measure to compute a running total per customer, ordered by Invoice Date:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Running Total AR = 
VAR CurrentCustomer = SELECTEDVALUE('AR Table'[Customer Number])
VAR MaxDate = MAX('Calendar'[Date])
RETURN
CALCULATE(
    SUM('AR Table'[AR Balance]),
    FILTER(
        ALL('Calendar'),
        'Calendar'[Date] &amp;lt;= MaxDate
    ),
    'AR Table'[Customer Number] = CurrentCustomer
)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;This measure resets the total per customer and dynamically calculates the cumulative AR balance over time.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;3. If invoice numbers are numeric and represent chronological order, you can create an alternative running total that relies on Invoice Number instead of Invoice Date:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Running Total AR by Invoice = 
VAR CurrentCustomer = SELECTEDVALUE('AR Table'[Customer Number])
VAR CurrentInvoice = SELECTEDVALUE('AR Table'[Invoice Number])
RETURN
CALCULATE(
    SUM('AR Table'[AR Balance]),
    FILTER(
        ALL('AR Table'),
        'AR Table'[Customer Number] = CurrentCustomer &amp;amp;&amp;amp;
        'AR Table'[Invoice Number] &amp;lt;= CurrentInvoice
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;Use this when Invoice dates are unreliable.&lt;/P&gt;
&lt;P&gt;You want to sort balances specifically by invoice sequence.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 8pt; font-family: Aptos; font-size: 12.0pt;"&gt;If this post was helpful, please consider marking &lt;SPAN&gt;Accept as solution&lt;/SPAN&gt; to assist other members in finding it more easily.&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 8pt; font-family: Aptos; font-size: 12.0pt;"&gt;If you continue to face issues, feel free to reach out to us for further assistance!&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 11:51:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4703434#M1405027</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-22T11:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4707931#M1406151</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1278920" data-lia-user-login="Zzzzzzz" class="lia-mention lia-mention-user"&gt;Zzzzzzz&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If the information is helpful, please accept the answer by clicking the&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;"Upvote" and "Accept Answer"&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;on the post. If you are still facing any issue, please let us know in the comments. We are glad to help you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We value your feedback, and it will help us to assist others who might have a similar query. Thank you for your contribution in enhancing Microsoft Fabric Community Forum.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2025 18:05:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4707931#M1406151</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-26T18:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4712845#M1407308</link>
      <description>&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV id="bodyDisplay_1" class=""&gt;
&lt;DIV class=""&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="524022" data-lia-user-login="ZZZZZ" class="lia-mention lia-mention-user"&gt;ZZZZZ&lt;/a&gt;,&lt;BR /&gt;we haven't heard back from you regarding our last response and wanted to check if your issue has been resolved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the response addressed by the community member for&amp;nbsp; your query, please mark it as&amp;nbsp;Accept Answer&amp;nbsp;and click&amp;nbsp;Yes&amp;nbsp;if you found it helpful.&lt;BR /&gt;&lt;BR /&gt;Thank You.&lt;/P&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 29 May 2025 17:18:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4712845#M1407308</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-29T17:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4712862#M1407314</link>
      <description>&lt;P&gt;hi i cannot share a MS excel file i think the picture is enough i basically need a running total by invoice number that will move according to the aging bucket so if the aging bucket is only two columns because the customer only has 30 days invoice then the running total will be in the fourth column&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 May 2025 17:27:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4712862#M1407314</guid>
      <dc:creator>Zzzzzzz</dc:creator>
      <dc:date>2025-05-29T17:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4713587#M1407512</link>
      <description>&lt;P&gt;Thanks for the clarification. To achieve a running total by invoice number that dynamically adjusts based on the aging buckets and always appears as the last column, you can use a DAX measure like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Running Total AR = 
VAR CurrentCustomer = SELECTEDVALUE('AR Table'[Customer Number])
VAR CurrentInvoice = SELECTEDVALUE('AR Table'[Invoice Number])
RETURN
CALCULATE(
    SUM('AR Table'[AR Balance]),
    FILTER(
        ALLSELECTED('AR Table'),
        'AR Table'[Customer Number] = CurrentCustomer &amp;amp;&amp;amp;
        'AR Table'[Invoice Number] &amp;lt;= CurrentInvoice
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;This measure calculates a cumulative total of AR Balance per customer ordered by invoice number and respects your matrix’s current filter context, including dynamic aging buckets.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you add this measure to your matrix, it will automatically appear as the last column after the aging buckets, even if the number of aging buckets varies per customer.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 8pt; font-family: Aptos; font-size: 12.0pt;"&gt;If this post was helpful, please consider marking &lt;SPAN&gt;Accept as solution&lt;/SPAN&gt; to assist other members in finding it more easily.&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 8pt; font-family: Aptos; font-size: 12.0pt;"&gt;If you continue to face issues, feel free to reach out to us for further assistance!&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="en-US"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 08:15:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4713587#M1407512</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-30T08:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic running Total</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4716196#M1408162</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1278920" data-lia-user-login="Zzzzzzz" class="lia-mention lia-mention-user"&gt;Zzzzzzz&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;If the information is helpful, please accept the answer by clicking the&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;"Upvote" and "Accept Answer"&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;on the post. If you are still facing any issue, please let us know in the comments. We are glad to help you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We value your feedback, and it will help us to assist others who might have a similar query. Thank you for your contribution in enhancing Microsoft Fabric Community Forum.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 06:46:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-running-Total/m-p/4716196#M1408162</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-06-02T06:46:25Z</dc:date>
    </item>
  </channel>
</rss>

