<?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 Create Calculated Table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Table/m-p/898853#M8178</link>
    <description>&lt;P&gt;Source data table:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Rows 2 and 4 indicate multiple payments. B Corp to be paid $150 on 1/10, 2/10, and 3/10. D Corp to be paid $200 on 1/18 and 2/18.&amp;nbsp; I'm looking for a DAX formula to produce the following calculated table from the source table above:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thank you for your time and assistance.&lt;/P&gt;</description>
    <pubDate>Tue, 14 Jan 2020 06:29:56 GMT</pubDate>
    <dc:creator>bob57</dc:creator>
    <dc:date>2020-01-14T06:29:56Z</dc:date>
    <item>
      <title>Create Calculated Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Table/m-p/898853#M8178</link>
      <description>&lt;P&gt;Source data table:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Rows 2 and 4 indicate multiple payments. B Corp to be paid $150 on 1/10, 2/10, and 3/10. D Corp to be paid $200 on 1/18 and 2/18.&amp;nbsp; I'm looking for a DAX formula to produce the following calculated table from the source table above:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thank you for your time and assistance.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 06:29:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Table/m-p/898853#M8178</guid>
      <dc:creator>bob57</dc:creator>
      <dc:date>2020-01-14T06:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Table/m-p/899211#M8185</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="198866" data-lia-user-login="bob57" class="lia-mention lia-mention-user"&gt;bob57&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can create a table like below.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table 2 = 
SELECTCOLUMNS(
    GENERATE(
        'Table',
        VAR __pumnts = 'Table'[No Pymnts]
        RETURN 
            GENERATESERIES( 1, __pumnts, 1 )
    ),
    "Date", 
        VAR __value = [Value] -1 
        VAR __date = 'Table'[Date] 
        VAR __year = YEAR( __date )
        VAR __month = MONTH( __date ) + __value
        VAR __day = DAY( __date )
        RETURN 
            DATE( __year, __month, __day ),
    "Payment", 'Table'[Payment],
    "Vendor", 'Table'[Vendor]
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;Best Regards,&lt;BR /&gt;Mariusz&lt;BR /&gt;&lt;BR /&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accepting it as the solution&lt;/I&gt;&lt;/STRONG&gt;.&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 09:50:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Table/m-p/899211#M8185</guid>
      <dc:creator>Mariusz</dc:creator>
      <dc:date>2020-01-14T09:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Table/m-p/899570#M8193</link>
      <description>&lt;P&gt;Worked perfectly! Thank you. Now Ineed to learn how it works. Appreciate your effort.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 14:27:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Table/m-p/899570#M8193</guid>
      <dc:creator>bob57</dc:creator>
      <dc:date>2020-01-14T14:27:24Z</dc:date>
    </item>
  </channel>
</rss>

