<?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 that works across 2 different columns/dimensions in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-that-works-across-2-different-columns-dimensions/m-p/3780844#M147722</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="172399" data-lia-user-login="philip_nwdba" class="lia-mention lia-mention-user"&gt;philip_nwdba&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please try this approach:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Unified Running Total = 
CALCULATE(
    [Volume],
    FILTER(
        ALLSELECTED('Unified Date'[Unified Date]),
        ISONORAFTER('Unified Date'[Unified Date], MAX('Unified Date'[Unified Date]), DESC)
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 20 Mar 2024 22:40:06 GMT</pubDate>
    <dc:creator>Sahir_Maharaj</dc:creator>
    <dc:date>2024-03-20T22:40:06Z</dc:date>
    <item>
      <title>Running Total that works across 2 different columns/dimensions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-that-works-across-2-different-columns-dimensions/m-p/3780076#M147704</link>
      <description>&lt;P&gt;I have a running total DAX calculation that works based on the Month column in my date table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CALCULATE(
	[Volume],
	FILTER(
		ALLSELECTED('Date'[Month]),
		ISONORAFTER('Date'[Month], MAX('Date'[Month]), DESC)
	)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have another table in my semantic model called Fiscal period. I want the user to be able to see the running total of volume regardless of which column they are viewing the data by either Month or Fiscal Period. I could create another measure using the below code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CALCULATE(
	[Period],
	FILTER(
		ALLSELECTED('Fiscal Period'[Period]),
		ISONORAFTER('Fiscal Period'[Period], MAX('Fiscal Period'[Period]), DESC)
	)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However that isnt very user friendly having 2 measures. Is there a way of creating a running total measure that will work against the 'Fiscal Period'[Period] column and the 'Date'[Month] column.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2024 16:16:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-that-works-across-2-different-columns-dimensions/m-p/3780076#M147704</guid>
      <dc:creator>philip_nwdba</dc:creator>
      <dc:date>2024-03-20T16:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total that works across 2 different columns/dimensions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-that-works-across-2-different-columns-dimensions/m-p/3780844#M147722</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="172399" data-lia-user-login="philip_nwdba" class="lia-mention lia-mention-user"&gt;philip_nwdba&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please try this approach:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Unified Running Total = 
CALCULATE(
    [Volume],
    FILTER(
        ALLSELECTED('Unified Date'[Unified Date]),
        ISONORAFTER('Unified Date'[Unified Date], MAX('Unified Date'[Unified Date]), DESC)
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2024 22:40:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-that-works-across-2-different-columns-dimensions/m-p/3780844#M147722</guid>
      <dc:creator>Sahir_Maharaj</dc:creator>
      <dc:date>2024-03-20T22:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total that works across 2 different columns/dimensions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-that-works-across-2-different-columns-dimensions/m-p/3781516#M147740</link>
      <description>&lt;P&gt;Hi, what is the unified date column?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 06:13:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-that-works-across-2-different-columns-dimensions/m-p/3781516#M147740</guid>
      <dc:creator>philip_nwdba</dc:creator>
      <dc:date>2024-03-21T06:13:47Z</dc:date>
    </item>
  </channel>
</rss>

