<?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: Own date table is not properly filling itself out in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Own-date-table-is-not-properly-filling-itself-out/m-p/2388614#M62014</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;your solution works perfectly. Thanks a lot!&lt;/P&gt;</description>
    <pubDate>Fri, 11 Mar 2022 12:09:38 GMT</pubDate>
    <dc:creator>ThomasSan</dc:creator>
    <dc:date>2022-03-11T12:09:38Z</dc:date>
    <item>
      <title>Own date table is not properly filling itself out</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Own-date-table-is-not-properly-filling-itself-out/m-p/2388510#M62009</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having the problem that my DAX command for creating a date table is not properly working. I am using the following DAX formula:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Date = 
VAR MinYear = 2012
VAR MaxYear = 2031
RETURN
ADDCOLUMNS (
    FILTER (
        CALENDARAUTO( ),
        AND ( YEAR ( [Date] ) &amp;gt;= MinYear, YEAR ( [Date] ) &amp;lt;= MaxYear )
    ),
    "Year", YEAR ( [Date] ),
    "Month Name", FORMAT ( [Date], "mmmm" ),
    "Month Number", MONTH ( [Date] )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I find especially confusing is the fact that this command worked in an earlier dashboard but would not work now. Here is the screenshot of my older dashboard where it worked as intended:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and here is a screenshot of how it fails to work:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know why this is the case and what the remedy to this might be?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2022 11:20:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Own-date-table-is-not-properly-filling-itself-out/m-p/2388510#M62009</guid>
      <dc:creator>ThomasSan</dc:creator>
      <dc:date>2022-03-11T11:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Own date table is not properly filling itself out</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Own-date-table-is-not-properly-filling-itself-out/m-p/2388575#M62010</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="329838" data-lia-user-login="ThomasSan" class="lia-mention lia-mention-user"&gt;ThomasSan&lt;/a&gt; , better you do like that&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Date = &lt;BR /&gt;VAR MinYear = 2012&lt;BR /&gt;VAR MaxYear = 2031&lt;BR /&gt;RETURN&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;calendar( date(MinYear,1,1) ,Date(MaxYear,12,31) &lt;BR /&gt;),&lt;BR /&gt;"Year", YEAR ( [Date] ),&lt;BR /&gt;"Month Name", FORMAT ( [Date], "mmmm" ),&lt;BR /&gt;"Month Number", MONTH ( [Date] )&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;calendar auto will be limited by dates present in other tables&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2022 11:48:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Own-date-table-is-not-properly-filling-itself-out/m-p/2388575#M62010</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-03-11T11:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: Own date table is not properly filling itself out</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Own-date-table-is-not-properly-filling-itself-out/m-p/2388614#M62014</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;your solution works perfectly. Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2022 12:09:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Own-date-table-is-not-properly-filling-itself-out/m-p/2388614#M62014</guid>
      <dc:creator>ThomasSan</dc:creator>
      <dc:date>2022-03-11T12:09:38Z</dc:date>
    </item>
  </channel>
</rss>

