<?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: How to multiple sum to measure with each value of column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4096566#M162569</link>
    <description>&lt;P&gt;Hey&amp;nbsp;Anonymous&lt;/LI-USER&gt;, give this a try, and if you encounter any issues, let me know.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;you can download PBIX file &lt;A title="PBIX file" href="https://datadp.com/wp-content/uploads/2024/08/How_to_Multiply_a_Sum_Measure_by_Each_Value_of_a_Column_in_DAX.pbix" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Tue, 13 Aug 2024 03:50:01 GMT</pubDate>
    <dc:creator>ahadkarimi</dc:creator>
    <dc:date>2024-08-13T03:50:01Z</dc:date>
    <item>
      <title>How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4096122#M162548</link>
      <description>&lt;P&gt;HI Team,&lt;/P&gt;&lt;P&gt;I am trying to multiple Index column with measure burn rate (147,276.33)&amp;nbsp; &amp;nbsp;i.e&amp;nbsp; 1*&amp;nbsp;147,276.33, 2*147,276.33,3*147,276.33 and so on&lt;/P&gt;&lt;P&gt;as a measure . DAX not allowing me multiplication of 1 column and sum of measure... Can you please advise.&lt;/P&gt;&lt;P&gt;&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;Thanks in advance!!&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2024 20:44:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4096122#M162548</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-12T20:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4096265#M162555</link>
      <description>&lt;P&gt;hello&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please check if this accomodate your need.&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;Multiple Sum =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;_Total&lt;/SPAN&gt;&lt;SPAN&gt; = &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;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[BurnRate]&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;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Return&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Index]&lt;/SPAN&gt;&lt;SPAN&gt;*&lt;/SPAN&gt;&lt;SPAN&gt;_Total&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you are looking is a SUMPRODUCT calculation in excel, so below is excel SUMPRODUCT to verify the result.&lt;/P&gt;&lt;P&gt;The calculation result in power bi matches to calculation result in excel below.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 00:27:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4096265#M162555</guid>
      <dc:creator>Irwan</dc:creator>
      <dc:date>2024-08-13T00:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4096565#M162568</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490030" data-lia-user-login="Irwan" class="lia-mention lia-mention-user"&gt;Irwan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;Thanks for looking into this. I have tried with this code but BurnRate is measure in table and your code looks for column in table. Its giving below error. ALso 'New' is table name , [Index] is regular column and BurnRate is measure.&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;</description>
      <pubDate>Tue, 13 Aug 2024 03:45:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4096565#M162568</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-13T03:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4096566#M162569</link>
      <description>&lt;P&gt;Hey&amp;nbsp;Anonymous&lt;/a&gt;, give this a try, and if you encounter any issues, let me know.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;you can download PBIX file &lt;A title="PBIX file" href="https://datadp.com/wp-content/uploads/2024/08/How_to_Multiply_a_Sum_Measure_by_Each_Value_of_a_Column_in_DAX.pbix" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 03:50:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4096566#M162569</guid>
      <dc:creator>ahadkarimi</dc:creator>
      <dc:date>2024-08-13T03:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4096586#M162570</link>
      <description>&lt;P&gt;hello&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;as you can see in my DAX above, _Total is a measure DAX for BurnRate sum.&lt;/P&gt;&lt;P&gt;so if you have separate measure for BurnRate sum, then you can directly use that measure instead of using var _Total.&lt;/P&gt;&lt;P&gt;here is measure for BurnRate sum:&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;Sum BurnRate =&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;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[BurnRate]&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;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;and here is measure for SUMX index and BurnRate sum&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;Multiple Sum =&lt;/SPAN&gt; &lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Index]&lt;/SPAN&gt;&lt;SPAN&gt;*&lt;/SPAN&gt;&lt;SPAN&gt;[Sum BurnRate]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;the result is same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 04:08:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4096586#M162570</guid>
      <dc:creator>Irwan</dc:creator>
      <dc:date>2024-08-13T04:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4097733#M162599</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785426" data-lia-user-login="ahadkarimi" class="lia-mention lia-mention-user"&gt;ahadkarimi&lt;/a&gt;&amp;nbsp; Thansk for your input. I need each Index value to be mulipled by total sum of burn rate i.e.&lt;SPAN&gt;i.e&amp;nbsp; 1*&amp;nbsp;147,276.33, 2*147,276.33,3*147,276.33 and so on&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;In you case,index value is multiplying by each value of burn rate.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 13:39:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4097733#M162599</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-13T13:39:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4097814#M162602</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490030" data-lia-user-login="Irwan" class="lia-mention lia-mention-user"&gt;Irwan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IN first measure "&lt;SPAN&gt;Sum BurnRate" itself its giving error. Calculate(SUM ()) function expect regular column of table . In my case,"BurnRate" is calculated measure so this formula is not working and giving error as below. When tried with SUMX,it gives cartesian product and wrong value.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&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;</description>
      <pubDate>Tue, 13 Aug 2024 14:20:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4097814#M162602</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-13T14:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4097951#M162607</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;, try this one and if there's any problem let me know.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;you can download the new version from &lt;A title="PBIX file" href="https://datadp.com/wp-content/uploads/2024/08/How_to_Multiply_a_Sum_Measure_by_Each_Value_of_a_Column_in_DAX_v2.pbix" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 15:24:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4097951#M162607</guid>
      <dc:creator>ahadkarimi</dc:creator>
      <dc:date>2024-08-13T15:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098048#M162609</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785426" data-lia-user-login="ahadkarimi" class="lia-mention lia-mention-user"&gt;ahadkarimi&lt;/a&gt;&amp;nbsp; can you plz share the code...Its asking to download latest pbi verison which is not allowed as of now.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 15:51:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098048#M162609</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-13T15:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098054#M162610</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;, there are two measures.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TotalBurnRate = SUM(MyTable[BurnRate])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MultipliedIndexByTotalBurnRate = 
SELECTEDVALUE(MyTable[Index]) * CALCULATE(SUM(MyTable[BurnRate]), ALL(MyTable))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 15:54:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098054#M162610</guid>
      <dc:creator>ahadkarimi</dc:creator>
      <dc:date>2024-08-13T15:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098077#M162612</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785426" data-lia-user-login="ahadkarimi" class="lia-mention lia-mention-user"&gt;ahadkarimi&lt;/a&gt;&amp;nbsp;, [BurnRate] is calculated measure and your code expecting it as column so giving below error. If I use SUMX then it give cartecian product and wromg value&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;</description>
      <pubDate>Tue, 13 Aug 2024 16:04:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098077#M162612</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-13T16:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098087#M162614</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;is there BurnRate in New table?&lt;/P&gt;&lt;P&gt;can you share your Data 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, 13 Aug 2024 16:09:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098087#M162614</guid>
      <dc:creator>ahadkarimi</dc:creator>
      <dc:date>2024-08-13T16:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098091#M162615</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Index is also regular column like BR Cost . Burn Rate is measure&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 16:12:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098091#M162615</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-13T16:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098275#M162624</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;Since BurnRate is a measure and not a column, the error is occurring because you’re trying to use it in a context that expects a column reference.&lt;/P&gt;&lt;P&gt;If there is any error, let me know.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MultipliedIndexByTotalBurnRate = SELECTEDVALUE('New'[Index]) * CALCULATE([BurnRate], ALL('New'))&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 17:22:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098275#M162624</guid>
      <dc:creator>ahadkarimi</dc:creator>
      <dc:date>2024-08-13T17:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098503#M162635</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785426" data-lia-user-login="ahadkarimi" class="lia-mention lia-mention-user"&gt;ahadkarimi&lt;/a&gt;&amp;nbsp; &amp;nbsp;This solution worked for me.. Thanks for your help again!!&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 19:49:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098503#M162635</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-13T19:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to multiple sum to measure with each value of column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098515#M162638</link>
      <description>&lt;P&gt;Glad it worked! Feel free to reach out by mentioning me if you need more help!&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 19:55:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-multiple-sum-to-measure-with-each-value-of-column/m-p/4098515#M162638</guid>
      <dc:creator>ahadkarimi</dc:creator>
      <dc:date>2024-08-13T19:55:56Z</dc:date>
    </item>
  </channel>
</rss>

