<?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: split rows in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3012810#M102207</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="488032" data-lia-user-login="sa100" class="lia-mention lia-mention-user"&gt;sa100&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Create measures.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
CALCULATE(MAX('Table'[Purchase Cost]),FILTER(ALL('Table'),'Table'[Product]=SELECTEDVALUE('Table (2)'[Product])&amp;amp;&amp;amp;'Table'[Quantity]=SELECTEDVALUE('Table (2)'[Quantity])))&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Measure 2 = var _1=
CALCULATE(SUM('Table'[Purchase Cost]),FILTER(ALL('Table'),'Table'[Product]=SELECTEDVALUE('Table (2)'[Product])&amp;amp;&amp;amp;'Table'[Quantity]&amp;lt;&amp;gt;SELECTEDVALUE('Table (2)'[Quantity])))
var _2=SUMX(FILTER(ALL('Table (2)'),'Table (2)'[Product]=SELECTEDVALUE('Table (2)'[Product])),[Measure])
var _result=_1-_2
var _count=CALCULATE(COUNT('Table (2)'[Product]),FILTER(ALL('Table (2)'),[Measure]=BLANK()&amp;amp;&amp;amp;'Table (2)'[Product]=SELECTEDVALUE('Table (2)'[Product])))
return
IF([Measure]&amp;lt;&amp;gt;BLANK(),[Measure],IF(_count=1,_result,MAX('Table (2)'[Quantity])*MAX('Table (2)'[Price per unit])))
&lt;/LI-CODE&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;Best Regards&lt;BR /&gt;Community Support Team _ Polly&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
    <pubDate>Wed, 11 Jan 2023 04:48:40 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-01-11T04:48:40Z</dc:date>
    <item>
      <title>split rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3008015#M101903</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;I have the following two tables (demo data)&lt;/P&gt;&lt;P&gt;Table 1&lt;/P&gt;&lt;P&gt;Prodcut Quantity Unit Price Total Purchase Cost&lt;BR /&gt;2M9 2400 2.02 4848&lt;BR /&gt;SHC 3112 3.73 11607.76&lt;BR /&gt;PLM 1050 3.40 3570&lt;BR /&gt;TPM 3 0.16 0.48&lt;BR /&gt;TPM 1000 0.55 550&lt;BR /&gt;TPM 1176 0.20 235.2&lt;BR /&gt;TPM 2175 0.92 2001&lt;BR /&gt;MGT 47922 0.40 19168.8&lt;BR /&gt;MGT 7641 0.39 2979.99&lt;BR /&gt;BEW 4617 5.41 24977.97&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Table 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Product Quantity Price per Unit Sale Price&lt;BR /&gt;2M9 2400 2.83 6792&lt;BR /&gt;SHC 808 3.02 2440.16&lt;BR /&gt;SHC 2304 4.17 9607.68&lt;BR /&gt;PLM 1050 4.1 4305&lt;BR /&gt;MGT 11555 0.42 4853.1&lt;BR /&gt;MGT 13459 0.42 5652.78&lt;BR /&gt;MGT 11191 0.44 4924.04&lt;BR /&gt;MGT 11717 0.47 5506.99&lt;BR /&gt;MGT 7641 0.54 4126.14&lt;BR /&gt;BEW 1900 5.53 10507&lt;BR /&gt;BEW 957 5.53 5292.21&lt;BR /&gt;BEW 1760 5.86 10313.6&lt;BR /&gt;TPM 3 3.23 9.69&lt;BR /&gt;TPM 2176 3.6 7833.6&lt;BR /&gt;TPM 2175 4 8700&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I like to have the following end result table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Product Quantity (bought) Total purchase cost Quantiy (Sold) Sale Price&lt;BR /&gt;2M9 2400 4848.00 2400 6792&lt;BR /&gt;SHC 808 3013.84 808 2440.16&lt;BR /&gt;SHC 2304 8593.92 2304 9607.68&lt;BR /&gt;PLM 1050 3570.00 1050 4305&lt;BR /&gt;TPM 3 0.48 3 9.69&lt;BR /&gt;TPM 2176 785.2 2176 7833.6&lt;BR /&gt;TPM 2175 2001.00 2175 8700&lt;BR /&gt;MGT 11555 4622.00 11555 4853.1&lt;BR /&gt;MGT 13459 5383.60 13459 5652.78&lt;BR /&gt;MGT 11191 4476.40 11191 4924.04&lt;BR /&gt;MGT 11717 4686.80 11717 5506.99&lt;BR /&gt;MGT 7641 2979.99 7641 4126.14&lt;BR /&gt;BEW 1900 10279.00 1900 10507&lt;BR /&gt;BEW 957 5177.37 957 5292.21&lt;BR /&gt;BEW 1760 9521.60 1760 10313.6&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need Assistance to achieve this result. Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 03:07:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3008015#M101903</guid>
      <dc:creator>sa100</dc:creator>
      <dc:date>2023-01-11T03:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: split rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3008029#M101906</link>
      <description>&lt;P&gt;I think you're looking to merge the two tables. Check this page:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/power-query/merge-queries-overview" target="_blank"&gt;https://learn.microsoft.com/en-us/power-query/merge-queries-overview&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 05:13:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3008029#M101906</guid>
      <dc:creator>vicky_</dc:creator>
      <dc:date>2023-01-09T05:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: split rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3008047#M101908</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="488032" data-lia-user-login="sa100" class="lia-mention lia-mention-user"&gt;sa100&lt;/a&gt;&amp;nbsp; please can you explain how to calculate&amp;nbsp;&lt;SPAN&gt;Total purchase cost&amp;nbsp;and&amp;nbsp;Quantity Sale Price in result table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 05:25:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3008047#M101908</guid>
      <dc:creator>Mahesh0016</dc:creator>
      <dc:date>2023-01-09T05:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: split rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3008203#M101918</link>
      <description>&lt;P&gt;Thank you for you reply&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="478098" data-lia-user-login="Mahesh0016" class="lia-mention lia-mention-user"&gt;Mahesh0016&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have fixed the demo tables in the Post&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sale Price in the end result table&amp;nbsp; come from sale price column in table 2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Total purchase cost in end result comes from Table 1 based on the quantity of product sold in the table2. For example quanity of MGT product is 47922 in table1. T&lt;SPAN&gt;his need to split into&amp;nbsp;11555,13459,11191 and&amp;nbsp;11717 as per the quantity of sold in table 2. Then multiplied by unit purchase price (Table 1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 07:04:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3008203#M101918</guid>
      <dc:creator>sa100</dc:creator>
      <dc:date>2023-01-09T07:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: split rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3010431#M102046</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="488032" data-lia-user-login="sa100" class="lia-mention lia-mention-user"&gt;sa100&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I have created a simple sample , please refer to my pbix file to see if it helps you.&lt;/P&gt;
&lt;P&gt;Create a measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
VAR _1 =
    CALCULATE (
        MAX ( 'Table'[Purchase Cost] ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[Product] = SELECTEDVALUE ( 'Table (2)'[Product] )
                &amp;amp;&amp;amp; 'Table'[Quantity] = SELECTEDVALUE ( 'Table (2)'[Quantity] )
        )
    )
VAR _2 =
    CALCULATE (
        MAX ( 'Table'[Unit price] ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[Product] = SELECTEDVALUE ( 'Table (2)'[Product] )
                &amp;amp;&amp;amp; 'Table'[Quantity] &amp;lt;&amp;gt; SELECTEDVALUE ( 'Table (2)'[Quantity] )
        )
    )
VAR _3 =
    MAX ( 'Table (2)'[Quantity] ) * _2
RETURN
    IF ( _1 = BLANK (), _3, _1 )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank" rel="noopener"&gt;How to Get Your Question Answered Quickly&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;BR /&gt;Community Support Team _ Polly&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jan 2023 06:27:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3010431#M102046</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-10T06:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: split rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3012437#M102188</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;for your reply. This measure is good, but it does not provide all correct answers. For example last row of the ouput&lt;/P&gt;&lt;P&gt;TPM 2175 7833.60 3.60 2001.92&lt;/P&gt;&lt;P&gt;Calculation of 2001.92 total purchase cose in the measure is not correct&lt;/P&gt;&lt;P&gt;Where as&amp;nbsp; in my end result table&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;TPM 2176 783.36 2176 7833.6&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Total purchase cost is 783.36&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This purchase cost is calculated from the following rows in table 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;TPM 1000 0.55 550&lt;BR /&gt;TPM 1176 0.20 235.2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;thank you&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 00:40:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3012437#M102188</guid>
      <dc:creator>sa100</dc:creator>
      <dc:date>2023-01-11T00:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: split rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3012521#M102194</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="488032" data-lia-user-login="sa100" class="lia-mention lia-mention-user"&gt;sa100&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I have some doubt.&lt;/P&gt;
&lt;P&gt;How did you calculate to get these results?&amp;nbsp;I can understand how a single value like 2M9 and PLM can give correct results.&amp;nbsp;The rest of the values I am calculating according to the calculation of MGT. But didn't get the correct result, so what calculation did you get your TPM of 783.36 based on? It's not right if I calculate it proportionally. Can you provide more details?&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;The measure2 is incorrect, please provide more derails.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;BR /&gt;Community Support Team _ Polly&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 01:54:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3012521#M102194</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-11T01:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: split rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3012683#M102204</link>
      <description>&lt;P&gt;Thank you for your reply&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Criteria for the end result&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table 1 is Purchase Table&lt;/P&gt;&lt;P&gt;Table 2 is Sell Table&lt;/P&gt;&lt;P&gt;End result Table got all the rows from Sell Table plus combined/split rows from Table 1 based on Quantity column.&lt;/P&gt;&lt;P&gt;For example in case of TPM Product&lt;/P&gt;&lt;P&gt;Table 1 got four rows&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;TPM 3 0.16 0.48&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;TPM 1000 0.55 550&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;TPM 1176 0.20 235.2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;TPM 2175 0.92 2001&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sales Table got three rows&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;TPM 3 3.23 9.69&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;TPM 2176 3.6 7833.6&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;TPM 2175 4 8700&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;End Result Table &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;TPM 3 0.48 3 9.69&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;TPM 2176 &lt;U&gt;785.2&lt;/U&gt;&amp;nbsp;2176 7833.6&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;TPM 2175 2001.00 2175 8700&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Purchase Cost&amp;nbsp;&lt;U&gt;785.2 of 2176&lt;/U&gt; in End result comes from adding following two rows of Table 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;TPM &lt;U&gt;1000&lt;/U&gt; 0.55 &lt;U&gt;550&lt;/U&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;TPM &lt;U&gt;1176&lt;/U&gt; 0.20&lt;U&gt; 235.2&lt;/U&gt;&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope that will explain better.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apologies, there was minor error regarding value 785.2 it was posted as 783.36&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 03:08:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3012683#M102204</guid>
      <dc:creator>sa100</dc:creator>
      <dc:date>2023-01-11T03:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: split rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3012810#M102207</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="488032" data-lia-user-login="sa100" class="lia-mention lia-mention-user"&gt;sa100&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Create measures.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
CALCULATE(MAX('Table'[Purchase Cost]),FILTER(ALL('Table'),'Table'[Product]=SELECTEDVALUE('Table (2)'[Product])&amp;amp;&amp;amp;'Table'[Quantity]=SELECTEDVALUE('Table (2)'[Quantity])))&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Measure 2 = var _1=
CALCULATE(SUM('Table'[Purchase Cost]),FILTER(ALL('Table'),'Table'[Product]=SELECTEDVALUE('Table (2)'[Product])&amp;amp;&amp;amp;'Table'[Quantity]&amp;lt;&amp;gt;SELECTEDVALUE('Table (2)'[Quantity])))
var _2=SUMX(FILTER(ALL('Table (2)'),'Table (2)'[Product]=SELECTEDVALUE('Table (2)'[Product])),[Measure])
var _result=_1-_2
var _count=CALCULATE(COUNT('Table (2)'[Product]),FILTER(ALL('Table (2)'),[Measure]=BLANK()&amp;amp;&amp;amp;'Table (2)'[Product]=SELECTEDVALUE('Table (2)'[Product])))
return
IF([Measure]&amp;lt;&amp;gt;BLANK(),[Measure],IF(_count=1,_result,MAX('Table (2)'[Quantity])*MAX('Table (2)'[Price per unit])))
&lt;/LI-CODE&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;Best Regards&lt;BR /&gt;Community Support Team _ Polly&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 04:48:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3012810#M102207</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-11T04:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: split rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3021680#M102853</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp; . This measue is providing correct results for less than three tranaction of same product in purchase table. Thank you for that. My full data contains more than three transactions of same product in purchase table. Good news is that I used runnning toal in power query plus some of your measures to resolve the issue. Thank you&lt;/P&gt;</description>
      <pubDate>Sun, 15 Jan 2023 21:42:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/split-rows/m-p/3021680#M102853</guid>
      <dc:creator>sa100</dc:creator>
      <dc:date>2023-01-15T21:42:20Z</dc:date>
    </item>
  </channel>
</rss>

