<?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 How to create a new table with duplicate dates and values from an existing table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-new-table-with-duplicate-dates-and-values-from/m-p/2877593#M93010</link>
    <description>&lt;P&gt;I have these two tables - with no natural connection:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I want to create this table for all the dates with DAX, please help!&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Nov 2022 14:53:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-11-01T14:53:56Z</dc:date>
    <item>
      <title>How to create a new table with duplicate dates and values from an existing table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-new-table-with-duplicate-dates-and-values-from/m-p/2877593#M93010</link>
      <description>&lt;P&gt;I have these two tables - with no natural connection:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I want to create this table for all the dates with DAX, please help!&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 14:53:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-new-table-with-duplicate-dates-and-values-from/m-p/2877593#M93010</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-01T14:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new table with duplicate dates and values from an existing table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-new-table-with-duplicate-dates-and-values-from/m-p/2877628#M93015</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;!&lt;BR /&gt;Try the following:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;New Table =
VAR _Table1 =
    VALUES( 'Table 1'[DateShort] )
VAR _Table2 =
    SUMMARIZE(
        'Table 2',
        'Table 2'[Category],
        'Table 2'[Category 2]
    )
RETURN
    CROSSJOIN( _Table1, _Table2 )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;Let me know if that helps!&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 15:07:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-new-table-with-duplicate-dates-and-values-from/m-p/2877628#M93015</guid>
      <dc:creator>PabloDeheza</dc:creator>
      <dc:date>2022-11-01T15:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new table with duplicate dates and values from an existing table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-new-table-with-duplicate-dates-and-values-from/m-p/2877637#M93018</link>
      <description>&lt;P&gt;Thank you so much! That was exactly what i needed&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 15:14:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-new-table-with-duplicate-dates-and-values-from/m-p/2877637#M93018</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-01T15:14:36Z</dc:date>
    </item>
  </channel>
</rss>

