<?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: Productx with measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Productx-with-measure/m-p/3858677#M150730</link>
    <description>&lt;P&gt;Hi Markus&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe this is what you are looking for. &amp;nbsp;Hopefully this solves your query!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;SG&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.dropbox.com/scl/fi/sc3rk91amht8bt7gki47m/CAGR-calcualtion-v1.pbix?rlkey=rshoihhnaoufrkxjijj7o27sq&amp;amp;dl=0" target="_blank"&gt;https://www.dropbox.com/scl/fi/sc3rk91amht8bt7gki47m/CAGR-calcualtion-v1.pbix?rlkey=rshoihhnaoufrkxjijj7o27sq&amp;amp;dl=0&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Apr 2024 10:10:29 GMT</pubDate>
    <dc:creator>sgupta22</dc:creator>
    <dc:date>2024-04-22T10:10:29Z</dc:date>
    <item>
      <title>Productx with measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Productx-with-measure/m-p/3856578#M150658</link>
      <description>&lt;P&gt;Hi Dear DAX Experts, I know the almost excactly the same question has been asked before by&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="445801" data-lia-user-login="sgupta22" class="lia-mention lia-mention-user"&gt;sgupta22&lt;/a&gt; but the solution was presented in the BI File and the file is no longer available. So let me ask for help for the following problem:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to compound monthly growth rates.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The growth rates are the result of a Measure:&amp;nbsp;&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;&lt;SPAN&gt;So far so good, but now I want to compound theses growth rates by creating an Index showing the cumulative growth and I do not know how to do it. If the rates were in a column I could use productx. But the rates are in a measure. In Excel what I need would be this:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Markus&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2024 08:27:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Productx-with-measure/m-p/3856578#M150658</guid>
      <dc:creator>McShock</dc:creator>
      <dc:date>2024-04-21T08:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Productx with measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Productx-with-measure/m-p/3856812#M150667</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="720798" data-lia-user-login="McShock" class="lia-mention lia-mention-user"&gt;McShock&lt;/a&gt;&amp;nbsp;Try:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
  VAR __Date = MAX('Dates'[Date])
  VAR __Table = SUMMARIZE( FILTER( 'Dates', [Date] &amp;lt;= __Date), [Year], [Month], "__Value", [Performance %])
  VAR __Result = PRODUCTX( __Table, [__Value] )
RETURN
  __Result&lt;/LI-CODE&gt;
&lt;P&gt;It's the measure aggregation pattern.&amp;nbsp;This looks like a measure aggregation problem. See my blog article about that here: &lt;A href="https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The pattern is: &lt;BR /&gt;MinScoreMeasure = MINX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])&lt;BR /&gt;MaxScoreMeasure = MAXX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])&lt;BR /&gt;AvgScoreMeasure = AVERAGEX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])&lt;BR /&gt;etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you need something more specific,&amp;nbsp;Sorry, having trouble following, can you post sample data as text and expected output?&lt;BR /&gt;Not really enough information to go on, please first check if your issue is a common issue listed here: &lt;A href="https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Also, please see this post regarding How to Get Your Question Answered Quickly: &lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The most important parts are:&lt;BR /&gt;1. Sample data as text, use the table tool in the editing bar&lt;BR /&gt;2. Expected output from sample data&lt;BR /&gt;3. Explanation in words of how to get from 1. to 2.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2024 13:08:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Productx-with-measure/m-p/3856812#M150667</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-04-21T13:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: Productx with measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Productx-with-measure/m-p/3858677#M150730</link>
      <description>&lt;P&gt;Hi Markus&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe this is what you are looking for. &amp;nbsp;Hopefully this solves your query!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;SG&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.dropbox.com/scl/fi/sc3rk91amht8bt7gki47m/CAGR-calcualtion-v1.pbix?rlkey=rshoihhnaoufrkxjijj7o27sq&amp;amp;dl=0" target="_blank"&gt;https://www.dropbox.com/scl/fi/sc3rk91amht8bt7gki47m/CAGR-calcualtion-v1.pbix?rlkey=rshoihhnaoufrkxjijj7o27sq&amp;amp;dl=0&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 10:10:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Productx-with-measure/m-p/3858677#M150730</guid>
      <dc:creator>sgupta22</dc:creator>
      <dc:date>2024-04-22T10:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: Productx with measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Productx-with-measure/m-p/3873315#M151299</link>
      <description>&lt;P&gt;Hi Greg, Thank you for taking the time!&lt;/P&gt;&lt;P&gt;This is interesting. Dax accepts the productx in this context, but yields me the monthly return that I already have instead of compounding it.&amp;nbsp;&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 anyway.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Markus&lt;/P&gt;</description>
      <pubDate>Sun, 28 Apr 2024 16:54:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Productx-with-measure/m-p/3873315#M151299</guid>
      <dc:creator>McShock</dc:creator>
      <dc:date>2024-04-28T16:54:38Z</dc:date>
    </item>
  </channel>
</rss>

