<?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 Date (Year) showing as 0201 instead of 19XX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Year-showing-as-0201-instead-of-19XX/m-p/2403750#M63032</link>
    <description>&lt;P&gt;Hi there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to create a Calendar Table, using the CALENDARAUTO function, but for some reason, the format in the year is a list of numbers starting on 0201 and going on beyond 3401, etc. This is happening only in the new crated calendar table, the others show the regular format "3/9/2022".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried with the formating options but without success.&lt;BR /&gt;&lt;BR /&gt;Why is this happening and more important, how can I get back to a regular format (1986, 2001, etc) in the years?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;THANKS in advance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 18 Mar 2022 17:27:07 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-03-18T17:27:07Z</dc:date>
    <item>
      <title>Date (Year) showing as 0201 instead of 19XX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Year-showing-as-0201-instead-of-19XX/m-p/2403750#M63032</link>
      <description>&lt;P&gt;Hi there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to create a Calendar Table, using the CALENDARAUTO function, but for some reason, the format in the year is a list of numbers starting on 0201 and going on beyond 3401, etc. This is happening only in the new crated calendar table, the others show the regular format "3/9/2022".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried with the formating options but without success.&lt;BR /&gt;&lt;BR /&gt;Why is this happening and more important, how can I get back to a regular format (1986, 2001, etc) in the years?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;THANKS in advance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Mar 2022 17:27:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Year-showing-as-0201-instead-of-19XX/m-p/2403750#M63032</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-18T17:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: Date (Year) showing as 0201 instead of 19XX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Year-showing-as-0201-instead-of-19XX/m-p/2403999#M63048</link>
      <description>&lt;P&gt;HI:&lt;/P&gt;&lt;P&gt;Looks like you can use:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year = FORMAT(Calendar[Date], "yyyy")&lt;/P&gt;</description>
      <pubDate>Fri, 18 Mar 2022 20:36:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Year-showing-as-0201-instead-of-19XX/m-p/2403999#M63048</guid>
      <dc:creator>Whitewater100</dc:creator>
      <dc:date>2022-03-18T20:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Date (Year) showing as 0201 instead of 19XX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Year-showing-as-0201-instead-of-19XX/m-p/2404029#M63054</link>
      <description>&lt;P&gt;I tried but get the same odd format 0201...&lt;/P&gt;</description>
      <pubDate>Fri, 18 Mar 2022 21:08:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Year-showing-as-0201-instead-of-19XX/m-p/2404029#M63054</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-18T21:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Date (Year) showing as 0201 instead of 19XX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Year-showing-as-0201-instead-of-19XX/m-p/2404040#M63056</link>
      <description>&lt;P&gt;I would start over and use CALENDAR function. Clendar auto searches all your columns from all of your tables and creates a potentially massive calendar. It can pick up on peoples birhdates and such. I never use it. Try CALENDAR function. Here's an example for a calendar for 2021 -2022.&lt;/P&gt;&lt;P&gt;Go to Modeling &amp;gt; New Table.&lt;/P&gt;&lt;P&gt;DATES = CALENDAR(DATE(2021, 1, 1), DATE(2022,12,31))&lt;/P&gt;&lt;P&gt;You can select add new column to put in Year on this new table.&lt;/P&gt;&lt;P&gt;YEAR = YEAR(Dates[Date])&lt;/P&gt;&lt;P&gt;MONTH No. = MONTH(Dates[Date])&lt;/P&gt;&lt;P&gt;Month Name = FORMAT(Dates[Date],"mmm")&lt;/P&gt;&lt;P&gt;Week No. = WEEKNUM(Dates[Date])&lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Mar 2022 21:17:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Year-showing-as-0201-instead-of-19XX/m-p/2404040#M63056</guid>
      <dc:creator>Whitewater100</dc:creator>
      <dc:date>2022-03-18T21:17:18Z</dc:date>
    </item>
  </channel>
</rss>

