<?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: Multiply columns row by row from two different tables and get correct sum in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/3007125#M101802</link>
    <description>&lt;P&gt;You could simply use value function -&lt;/P&gt;&lt;P&gt;VALUE(TABLE1[COL1]) * VALUE(TABLE2[COL2])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and it works just fine!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 07 Jan 2023 21:48:35 GMT</pubDate>
    <dc:creator>Mohapatra-Akank</dc:creator>
    <dc:date>2023-01-07T21:48:35Z</dc:date>
    <item>
      <title>Multiply columns row by row from two different tables and get correct sum</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/952652#M10754</link>
      <description>&lt;P&gt;Hi, row operations like multiply seem a bit tricky in PowerBi to get the correct sums especially.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would be grateful if someone could help on an efficient way to accomplish this effectively.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the example multiplying&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - [row column} By [row column] in same table&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - [row column] by [row column] in different tables&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - [row column] by [measure] in same table&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - [row column] by [measure] in different tables&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - [measure] by [measure] in same table&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - [measure] by [measure] in different tables&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems many of the basic expressions break when combining two different "types" to mulityply with.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I finally found one solution to get the correct sum of a row-by-row multiplicaiton, however for that I did it in two measures. One doing the calculation, in the second using Sumx to get the correct sum.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Volume = (SELECTEDVALUE(Price[Retail Price]) * SELECTEDVALUE(Discount[Discount factor])) * SELECTEDVALUE(Qty[Qty])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 28 Feb 2020 10:25:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/952652#M10754</guid>
      <dc:creator>1up</dc:creator>
      <dc:date>2020-02-28T10:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply columns row by row from two different tables and get correct sum</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/952663#M10756</link>
      <description>&lt;P&gt;So, source data always helps,&amp;nbsp;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;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - [row column} By [row column] in same table&lt;/P&gt;
&lt;P&gt;If calculated column, [Column 1] * [Column 2]&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - [row column] by [row column] in different tables&lt;/P&gt;
&lt;P&gt;If calculated column in table 1, [Column 1] * MAXX(RELATEDTABLE('Table 2',[Column])&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - [row column] by [measure] in same table&lt;/P&gt;
&lt;P&gt;If calculated column, [Column 1] * [Measure]&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - [row column] by [measure] in different tables&lt;BR /&gt;If calculated column, [Column 1] * [Measure]&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - [measure] by [measure] in same table&lt;/P&gt;
&lt;P&gt;If calculated column, [Measure 1] * [Measure 2]&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - [measure] by [measure] in different tables&lt;/P&gt;
&lt;P&gt;If calculated column, [Measure 1] * [Measure 2]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 10:37:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/952663#M10756</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-02-28T10:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply columns row by row from two different tables and get correct sum</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/952817#M10771</link>
      <description>&lt;P&gt;Below please find a mockup table with the expected result, following line multiplication, as well as a simple relation model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Volume measure is calculated using above formula, and seperately afterwards using Sumx-function.&lt;/P&gt;&lt;P&gt;&amp;nbsp;If there is a decision between using a calculated column or measure, I'd prefer the measure due to its flexibility (as far as I know now).&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;The aim of the calculation is to from a retail price, multiplying with a discount factor, getting a net price, then multiplying again with corresponding quantity, to get to a net volume, for each part number.&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;img /&gt;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Fri, 28 Feb 2020 12:06:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/952817#M10771</guid>
      <dc:creator>1up</dc:creator>
      <dc:date>2020-02-28T12:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply columns row by row from two different tables and get correct sum</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/952861#M10780</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="202416" data-lia-user-login="1up" class="lia-mention lia-mention-user"&gt;1up&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You may create a calculated column in your quantity table:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Net Price =
MAXX ( RELATEDTABLE ( dtPrice ), dtPrice[Retail Price] )
    * ( MAXX ( RELATEDTABLE ( dtDiscount ), dtDiscount[Discount] ) ) * dtQty[Qty]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers!&lt;BR /&gt;Vivek&lt;BR /&gt;&lt;BR /&gt;If it helps, please mark it as a solution&lt;BR /&gt;Kudos would be a cherry on the top &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.vivran.in/" target="_blank"&gt;https://www.vivran.in/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/vivek-ranjan-063a1a17b/" target="_blank"&gt;Connect on LinkedIn&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 12:45:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/952861#M10780</guid>
      <dc:creator>vivran22</dc:creator>
      <dc:date>2020-02-28T12:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply columns row by row from two different tables and get correct sum</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/952936#M10786</link>
      <description>&lt;P&gt;Thanks a lot Vivran.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there an expression which will create the same result using a measure?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 13:43:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/952936#M10786</guid>
      <dc:creator>1up</dc:creator>
      <dc:date>2020-02-28T13:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply columns row by row from two different tables and get correct sum</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/952971#M10788</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="202416" data-lia-user-login="1up" class="lia-mention lia-mention-user"&gt;1up&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You may try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Net Volume =
MAXX ( RELATEDTABLE ( dtPrice ), dtPrice[Retail Price] )
    * ( MAXX ( RELATEDTABLE ( dtDiscount ), dtDiscount[Discount] ) )
    * MAXX ( dtQty, dtQty[Qty] )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers!&lt;BR /&gt;Vivek&lt;BR /&gt;&lt;BR /&gt;If it helps, please mark it as a solution&lt;BR /&gt;Kudos would be a cherry on the top &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.vivran.in/" target="_blank"&gt;https://www.vivran.in/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/vivek-ranjan-063a1a17b/" target="_blank"&gt;Connect on LinkedIn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 14:03:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/952971#M10788</guid>
      <dc:creator>vivran22</dc:creator>
      <dc:date>2020-02-28T14:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply columns row by row from two different tables and get correct sum</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/953751#M10823</link>
      <description>This stuff should be done in Power Query. DAX is not a language for this. No wonder you guys struggle with things. If you use the right tool for the right job, you'd be saving yourself a lot of time and frustration.&lt;BR /&gt;&lt;BR /&gt;The very fact that something is doable in DAX does not mean it should be done in DAX. Easy as that.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Sat, 29 Feb 2020 12:16:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/953751#M10823</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-29T12:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply columns row by row from two different tables and get correct sum</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/954799#M10887</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE&gt;Could you please explain a bit more, D? I am under the impression using the Query editor will create calculated columns. That the measure-option is out of scope in the query editor? If it is easier to do this in the Query editor , then I am all ears. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE&gt;Anonymous&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;This stuff should be done in Power Query. DAX is not a language for this. No wonder you guys struggle with things. If you use the right tool for the right job, you'd be saving yourself a lot of time and frustration.&lt;BR /&gt;&lt;BR /&gt;The very fact that something is doable in DAX does not mean it should be done in DAX. Easy as that.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 07:45:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/954799#M10887</guid>
      <dc:creator>1up</dc:creator>
      <dc:date>2020-03-02T07:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply columns row by row from two different tables and get correct sum</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/954883#M10890</link>
      <description>&lt;P&gt;Hi, in my example the sum is incorrect unfortunately, 385 vs 463. The bottom row is the Total.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea what could be amiss?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 08:41:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/954883#M10890</guid>
      <dc:creator>1up</dc:creator>
      <dc:date>2020-03-02T08:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply columns row by row from two different tables and get correct sum</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/954919#M10891</link>
      <description>&lt;P&gt;Wrapping the expression in Sumx made it work. So now I have the calculations in one expression and a single measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For reference for other users, if you need to multiply columns with each other and want to do it using a measure, below code can be used. It is multiplying price with a discount factor and a quantity, to get to a net volume. The measure is created in the PriceTable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;NetVolume = Sumx (PriceTable; MAXX( RELATEDTABLE ( PriceTable ); PriceTable[Retail Price] )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; * ( MAXX ( RELATEDTABLE ( DiscountTable ); DiscountTable[Discount factor] ) ) &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* ( MAXX ( RELATEDTABLE ( QtyTable ); QtyTable[Qty] ) ) )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 02 Mar 2020 09:01:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/954919#M10891</guid>
      <dc:creator>1up</dc:creator>
      <dc:date>2020-03-02T09:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply columns row by row from two different tables and get correct sum</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/954952#M10893</link>
      <description>And I was under the impression that you needed a calculated column. At least in some of the cases you listed. It stands to reason of course that when a measure is involved, you can't use PQ. But when you need to perform an operation in a model table row by row, then PQ is the right way, not DAX.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Mon, 02 Mar 2020 09:16:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/954952#M10893</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-02T09:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply columns row by row from two different tables and get correct sum</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/954993#M10894</link>
      <description>&lt;P&gt;Good then we are on the same page. I tried to go all in with getting solutions for all possible combinations, as the code for measures seem to vary depending on if columns and / or measures are used, and I seem to not get them to work, until now after some good help on the way.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Cheers,&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 09:33:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/954993#M10894</guid>
      <dc:creator>1up</dc:creator>
      <dc:date>2020-03-02T09:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply columns row by row from two different tables and get correct sum</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/3007125#M101802</link>
      <description>&lt;P&gt;You could simply use value function -&lt;/P&gt;&lt;P&gt;VALUE(TABLE1[COL1]) * VALUE(TABLE2[COL2])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and it works just fine!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jan 2023 21:48:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiply-columns-row-by-row-from-two-different-tables-and-get/m-p/3007125#M101802</guid>
      <dc:creator>Mohapatra-Akank</dc:creator>
      <dc:date>2023-01-07T21:48:35Z</dc:date>
    </item>
  </channel>
</rss>

