<?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: Creating a new table using DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-new-table-using-DAX/m-p/1228526#M20016</link>
    <description>&lt;P&gt;go to the table view in Power BI (second icon), then click "New table" and enter the DAX code for the table that you want, incuding the additional columns.&lt;/P&gt;</description>
    <pubDate>Thu, 16 Jul 2020 14:34:16 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2020-07-16T14:34:16Z</dc:date>
    <item>
      <title>Creating a new table using DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-new-table-using-DAX/m-p/1228488#M20011</link>
      <description>&lt;P&gt;Sorry for stupid question in advance- i have to create a new table, only using dax, name it and name the column (for dates since&amp;nbsp;&lt;/P&gt;&lt;P&gt;January,1,2019 to February,1,2019).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it a way i can do it using DAX?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tried&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALENDAR(DATE(2019,1,1),DATE(2019,1,1))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;but i can't name the table and rename the column for further using in DAX query (i need additional calculations in this query after creating and naming the table, and all it should be done by DAX only).&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 16 Jul 2020 14:24:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-new-table-using-DAX/m-p/1228488#M20011</guid>
      <dc:creator>hald1r</dc:creator>
      <dc:date>2020-07-16T14:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a new table using DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-new-table-using-DAX/m-p/1228526#M20016</link>
      <description>&lt;P&gt;go to the table view in Power BI (second icon), then click "New table" and enter the DAX code for the table that you want, incuding the additional columns.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 14:34:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-new-table-using-DAX/m-p/1228526#M20016</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2020-07-16T14:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a new table using DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-new-table-using-DAX/m-p/1228536#M20017</link>
      <description>&lt;P&gt;I guess you're trying to do this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CustomTableName = SELECTCOLUMNS(CALENDAR(DATE(2020,01,01),DATE(2020,07,01)),"CustomColumnName",[Date])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 16 Jul 2020 14:37:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-new-table-using-DAX/m-p/1228536#M20017</guid>
      <dc:creator>Ste_For94</dc:creator>
      <dc:date>2020-07-16T14:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a new table using DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-new-table-using-DAX/m-p/1228598#M20020</link>
      <description>&lt;P&gt;Thank you! Could you also tell me, how can I use it in one DAX query?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to create this table and instantly combine it with another table with sales:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Initial data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1Jan&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3Jan&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5Jan&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to receive as a result:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1Jan&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2Jan&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3Jan&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4Jan&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5Jan&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6Jan&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;7Jan&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I have to create and use a table with dates in one dax query&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 14:59:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-new-table-using-DAX/m-p/1228598#M20020</guid>
      <dc:creator>hald1r</dc:creator>
      <dc:date>2020-07-16T14:59:53Z</dc:date>
    </item>
  </channel>
</rss>

