<?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: Help to create 2 x December months in a reporting period in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-to-create-2-x-December-months-in-a-reporting-period/m-p/4380437#M173883</link>
    <description>&lt;P&gt;Thanks Akash. It kind of work but displays 1 Dec - 14 Dec as the previous year.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 24 Jan 2025 23:15:59 GMT</pubDate>
    <dc:creator>TonyAshton</dc:creator>
    <dc:date>2025-01-24T23:15:59Z</dc:date>
    <item>
      <title>Help to create 2 x December months in a reporting period</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-to-create-2-x-December-months-in-a-reporting-period/m-p/4379580#M173855</link>
      <description>&lt;P&gt;Hi all.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am after some advice on how to create 2 x December months for one reporting period as registrations for my program commence mid December in one year and finish mid December the next i.e 15 December 2024 - 14 December 2025.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Especially when displaying, how to get the following.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dec 2024&lt;/P&gt;&lt;P&gt;Jan 2025&lt;/P&gt;&lt;P&gt;Feb 2025&lt;/P&gt;&lt;P&gt;Mar 2025&lt;/P&gt;&lt;P&gt;Apr 2025&lt;/P&gt;&lt;P&gt;May 2025&lt;/P&gt;&lt;P&gt;Jun 2025&lt;/P&gt;&lt;P&gt;Jul 2025&lt;/P&gt;&lt;P&gt;Aug 2025&lt;/P&gt;&lt;P&gt;Sep 2025&lt;/P&gt;&lt;P&gt;Oct 2025&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nov 2025&lt;/P&gt;&lt;P&gt;Dec 2025&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Even if Dec 2024 is Dec 1 and Dec 2025 is Dec 2 to assist as all Dec data is currently going in together at the moment.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 10:33:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-to-create-2-x-December-months-in-a-reporting-period/m-p/4379580#M173855</guid>
      <dc:creator>TonyAshton</dc:creator>
      <dc:date>2025-01-24T10:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: Help to create 2 x December months in a reporting period</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-to-create-2-x-December-months-in-a-reporting-period/m-p/4379720#M173857</link>
      <description>&lt;P&gt;Hi create a custom column and try this&lt;BR /&gt;CustomMonthYear =&lt;BR /&gt;VAR DecStart = DATE(YEAR('Date'[Date]), 12, 15)&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;MONTH('Date'[Date]) = 12 &amp;amp;&amp;amp; 'Date'[Date] &amp;gt;= DecStart,&lt;BR /&gt;"Dec " &amp;amp; YEAR('Date'[Date]),&lt;BR /&gt;IF(&lt;BR /&gt;MONTH('Date'[Date]) = 12 &amp;amp;&amp;amp; 'Date'[Date] &amp;lt; DecStart,&lt;BR /&gt;"Dec " &amp;amp; (YEAR('Date'[Date]) - 1),&lt;BR /&gt;FORMAT('Date'[Date], "MMM YYYY")&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 12:16:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-to-create-2-x-December-months-in-a-reporting-period/m-p/4379720#M173857</guid>
      <dc:creator>Akash_Varuna</dc:creator>
      <dc:date>2025-01-24T12:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: Help to create 2 x December months in a reporting period</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-to-create-2-x-December-months-in-a-reporting-period/m-p/4379721#M173858</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="524210" data-lia-user-login="TonyAshton" class="lia-mention lia-mention-user"&gt;TonyAshton&lt;/a&gt;&amp;nbsp;seeems you need fiscal calendar which start / end in December?&lt;/P&gt;
&lt;P&gt;If yes, in your Calendar / Date table create fiscal related columns. Check &lt;A href="https://www.daxpatterns.com/custom-time-related-calculations/" target="_blank"&gt;link&lt;/A&gt; for example and adjust to your calendar, like&amp;nbsp;VAR FirstFiscalMonth = 3 in your case should be&amp;nbsp;VAR FirstFiscalMonth = &lt;FONT size="6"&gt;12&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 12:16:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-to-create-2-x-December-months-in-a-reporting-period/m-p/4379721#M173858</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2025-01-24T12:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: Help to create 2 x December months in a reporting period</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-to-create-2-x-December-months-in-a-reporting-period/m-p/4380437#M173883</link>
      <description>&lt;P&gt;Thanks Akash. It kind of work but displays 1 Dec - 14 Dec as the previous year.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 23:15:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-to-create-2-x-December-months-in-a-reporting-period/m-p/4380437#M173883</guid>
      <dc:creator>TonyAshton</dc:creator>
      <dc:date>2025-01-24T23:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Help to create 2 x December months in a reporting period</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-to-create-2-x-December-months-in-a-reporting-period/m-p/4380551#M173892</link>
      <description>&lt;P&gt;&amp;nbsp;Hi could you try this&lt;BR /&gt;CustomMonthYear =&lt;BR /&gt;VAR CurrentYear = YEAR('Date'[Date])&lt;BR /&gt;VAR DecStart = DATE(CurrentYear, 12, 15)&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;MONTH('Date'[Date]) = 12 &amp;amp;&amp;amp; 'Date'[Date] &amp;gt;= DecStart,&lt;BR /&gt;"Dec " &amp;amp; CurrentYear + 1,&lt;BR /&gt;IF(&lt;BR /&gt;MONTH('Date'[Date]) = 12 &amp;amp;&amp;amp; 'Date'[Date] &amp;lt; DecStart,&lt;BR /&gt;"Dec " &amp;amp; CurrentYear,&lt;BR /&gt;FORMAT('Date'[Date], "MMM YYYY")&lt;BR /&gt;)&lt;BR /&gt;)&amp;nbsp;&lt;BR /&gt;If any of my post helped please give a kudos and accept the solution also&amp;nbsp;&lt;BR /&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jan 2025 04:58:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-to-create-2-x-December-months-in-a-reporting-period/m-p/4380551#M173892</guid>
      <dc:creator>Akash_Varuna</dc:creator>
      <dc:date>2025-01-25T04:58:26Z</dc:date>
    </item>
  </channel>
</rss>

