<?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: Create a table with username and week number / year increasing in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-with-username-and-week-number-year-increasing/m-p/3355497#M126083</link>
    <description>&lt;P&gt;Exactly what I needed, thank you so much &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Jul 2023 13:45:08 GMT</pubDate>
    <dc:creator>alexmoller96</dc:creator>
    <dc:date>2023-07-28T13:45:08Z</dc:date>
    <item>
      <title>Create a table with username and week number / year increasing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-with-username-and-week-number-year-increasing/m-p/3355219#M126061</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help in creating a new table. Here is the problem:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table containing usernames, and a week numbers / year as well as a lot of other items.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create a table separate combining username, each week number and each year them to look a little something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Username&lt;/TD&gt;&lt;TD&gt;Week&lt;/TD&gt;&lt;TD&gt;Year&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that possible using DAX?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 10:54:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-with-username-and-week-number-year-increasing/m-p/3355219#M126061</guid>
      <dc:creator>alexmoller96</dc:creator>
      <dc:date>2023-07-28T10:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Create a table with username and week number / year increasing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-with-username-and-week-number-year-increasing/m-p/3355228#M126062</link>
      <description>&lt;P&gt;can you please share a sample data from your table to better understand what you want&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 11:01:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-with-username-and-week-number-year-increasing/m-p/3355228#M126062</guid>
      <dc:creator>eliasayyy</dc:creator>
      <dc:date>2023-07-28T11:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create a table with username and week number / year increasing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-with-username-and-week-number-year-increasing/m-p/3355248#M126066</link>
      <description>&lt;P&gt;im not sure but try&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;New Table =&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;SUMMARIZE(&lt;BR /&gt;'YourTable',&lt;BR /&gt;'YourTable'[Username],&lt;BR /&gt;'YourTable'[Week],&lt;BR /&gt;'YourTable'[Year]&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 11:11:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-with-username-and-week-number-year-increasing/m-p/3355248#M126066</guid>
      <dc:creator>eliasayyy</dc:creator>
      <dc:date>2023-07-28T11:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Create a table with username and week number / year increasing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-with-username-and-week-number-year-increasing/m-p/3355497#M126083</link>
      <description>&lt;P&gt;Exactly what I needed, thank you so much &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 13:45:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-with-username-and-week-number-year-increasing/m-p/3355497#M126083</guid>
      <dc:creator>alexmoller96</dc:creator>
      <dc:date>2023-07-28T13:45:08Z</dc:date>
    </item>
  </channel>
</rss>

