<?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: Current Fiscal Month TRUE FALSE in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1258019#M20847</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92006" data-lia-user-login="joshua1990" class="lia-mention lia-mention-user"&gt;joshua1990&lt;/a&gt; , Try like&lt;/P&gt;
&lt;P&gt;Month Type = Switch( True(),&lt;BR /&gt;[start date]&amp;lt;=Today() &amp;amp;&amp;amp; [end date]&amp;gt;=Today(),"This Month" ,&lt;BR /&gt;[Month Name]&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Month Type = Switch( True(),&lt;BR /&gt;Date([Date]) = eomonth(Today(),-1),"Last Month" ,&lt;BR /&gt;Date([Date])= eomonth(Today(),0),"This Month" ,&lt;BR /&gt;[Month Year]&lt;BR /&gt;)&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jul 2020 06:08:13 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2020-07-29T06:08:13Z</dc:date>
    <item>
      <title>Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1257948#M20845</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello everyone!&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;SPAN&gt;I would like to add a binaer column into my fiscal calendar to get a TRUE/FALSE, if the date is in the current fiscal month.&lt;/SPAN&gt;&lt;DIV&gt;&lt;DIV&gt;How would you do that?&lt;DIV&gt;The fiscal months have specific start- and end dates.&lt;DIV&gt;The following approach is not working:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;"Current Fiscal Month", IF (&lt;BR /&gt;AND ( FiscMonth = MONTH ( TODAY () ), FiscYear = YEAR ( TODAY () ) ),&lt;BR /&gt;TRUE (),&lt;BR /&gt;FALSE ()&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 05:40:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1257948#M20845</guid>
      <dc:creator>joshua1990</dc:creator>
      <dc:date>2020-07-29T05:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1257985#M20846</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92006" data-lia-user-login="joshua1990" class="lia-mention lia-mention-user"&gt;joshua1990&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Can you share some sample data and the expected result as data to have a clear understanding of your question?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;________________________&lt;/P&gt;&lt;P&gt;Did I answer your question? Mark this post as a solution, this will help others!.&lt;/P&gt;&lt;P&gt;&lt;U&gt;Click on the Thumbs-Up icon on the right if you like this reply&lt;/U&gt; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&lt;A href="https://www.youtube.com/channel/UCKwBEguA8IlBubIobaOormg?sub_confirmation=1" target="_blank"&gt;YouTube, &lt;/A&gt;&lt;A href="https://linkedin.com/in/fowmy" target="_blank"&gt;LinkedIn&lt;/A&gt;&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 05:57:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1257985#M20846</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2020-07-29T05:57:37Z</dc:date>
    </item>
    <item>
      <title>Re: Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1258019#M20847</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92006" data-lia-user-login="joshua1990" class="lia-mention lia-mention-user"&gt;joshua1990&lt;/a&gt; , Try like&lt;/P&gt;
&lt;P&gt;Month Type = Switch( True(),&lt;BR /&gt;[start date]&amp;lt;=Today() &amp;amp;&amp;amp; [end date]&amp;gt;=Today(),"This Month" ,&lt;BR /&gt;[Month Name]&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Month Type = Switch( True(),&lt;BR /&gt;Date([Date]) = eomonth(Today(),-1),"Last Month" ,&lt;BR /&gt;Date([Date])= eomonth(Today(),0),"This Month" ,&lt;BR /&gt;[Month Year]&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 06:08:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1258019#M20847</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-07-29T06:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1260003#M20948</link>
      <description>&lt;P&gt;thanks for your reply&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="52518" data-lia-user-login="Fowmy" class="lia-mention lia-mention-user"&gt;Fowmy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is some sample data&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Fiscal Week&lt;/TD&gt;&lt;TD&gt;Fiscal Month&lt;/TD&gt;&lt;TD&gt;Fiscal Year&lt;/TD&gt;&lt;TD&gt;Fiscal Month Number&lt;/TD&gt;&lt;TD&gt;Fiscal Year-Month&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;30.12.2019&lt;/TD&gt;&lt;TD&gt;01&lt;/TD&gt;&lt;TD&gt;January&lt;/TD&gt;&lt;TD&gt;2020&lt;/TD&gt;&lt;TD&gt;01&lt;/TD&gt;&lt;TD&gt;2020-01&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;31.12.2019&lt;/TD&gt;&lt;TD&gt;01&lt;/TD&gt;&lt;TD&gt;January&lt;/TD&gt;&lt;TD&gt;2020&lt;/TD&gt;&lt;TD&gt;01&lt;/TD&gt;&lt;TD&gt;2020-01&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01.01.2020&lt;/TD&gt;&lt;TD&gt;01&lt;/TD&gt;&lt;TD&gt;January&lt;/TD&gt;&lt;TD&gt;2020&lt;/TD&gt;&lt;TD&gt;01&lt;/TD&gt;&lt;TD&gt;2020-01&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 29 Jul 2020 18:31:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1260003#M20948</guid>
      <dc:creator>joshua1990</dc:creator>
      <dc:date>2020-07-29T18:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1260044#M20950</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92006" data-lia-user-login="joshua1990" class="lia-mention lia-mention-user"&gt;joshua1990&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Add as a new column:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;IsCurrentMonth = 
IF(
    FORMAT(TODAY(),"yyyy-mmm") = FISCALCALENDAR[Fiscal Year-Month],
    TRUE(),
    FALSE()
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;________________________&lt;/P&gt;&lt;P&gt;Did I answer your question? Mark this post as a solution, this will help others!.&lt;/P&gt;&lt;P&gt;Click on the &lt;STRONG&gt;Thumbs-Up icon&lt;/STRONG&gt; on the right if you like this reply &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&lt;A href="https://www.youtube.com/channel/UCKwBEguA8IlBubIobaOormg?sub_confirmation=1" target="_blank" rel="noopener"&gt;YouTube, &lt;/A&gt;&lt;A href="https://linkedin.com/in/fowmy" target="_blank" rel="noopener"&gt;LinkedIn&lt;/A&gt;&lt;/I&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 07:17:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1260044#M20950</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2020-07-30T07:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1260060#M20951</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92006" data-lia-user-login="joshua1990" class="lia-mention lia-mention-user"&gt;joshua1990&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not very clear on the expected output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But see if this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create a Calculated Column&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Column = 
var _month = MONTH('Table'[Date])
var _year = YEAR('Table'[Date])

RETURN

IF(_month = 'Table'[Fiscal Month Number] &amp;amp;&amp;amp; _year = 'Table'[Fiscal Year] , "True","False")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harsh Nathani&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 18:55:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1260060#M20951</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-29T18:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1260076#M20955</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="52518" data-lia-user-login="Fowmy" class="lia-mention lia-mention-user"&gt;Fowmy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks you so much for your support!&lt;/P&gt;&lt;P&gt;But how can your approach work?&lt;/P&gt;&lt;P&gt;I mean, I have specific start and end dates for every fiscal month.&lt;/P&gt;&lt;P&gt;January is not starting at 01.01.2019.&lt;/P&gt;&lt;P&gt;It starts at 30.12.2019.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't think standard functions like YEAR, MONTH will work with this specific structure.&lt;/P&gt;&lt;P&gt;Your approach is not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 19:10:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1260076#M20955</guid>
      <dc:creator>joshua1990</dc:creator>
      <dc:date>2020-07-29T19:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1260079#M20957</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92006" data-lia-user-login="joshua1990" class="lia-mention lia-mention-user"&gt;joshua1990&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Your table already has a field that defined the fiscal year-month&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Fiscal Year-Month&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;So comparing the year and month of today's date should give you the correct result. Did you try? Share your data withthe&amp;nbsp; results if it doesn't work.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;________________________&lt;/P&gt;&lt;P&gt;Did I answer your question? Mark this post as a solution, this will help others!.&lt;/P&gt;&lt;P&gt;Click on the Thumbs-Up icon on the right if you like this reply &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&lt;A href="https://www.youtube.com/channel/UCKwBEguA8IlBubIobaOormg?sub_confirmation=1" target="_blank" rel="noopener"&gt;YouTube, &lt;/A&gt;&lt;A href="https://linkedin.com/in/fowmy" target="_blank" rel="noopener"&gt;LinkedIn&lt;/A&gt;&lt;/I&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 19:21:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1260079#M20957</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2020-07-29T19:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1260996#M20984</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92006" data-lia-user-login="joshua1990" class="lia-mention lia-mention-user"&gt;joshua1990&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try this.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;IsCurrentFiscalMonth =
VAR td =
    TODAY ()
VAR FMY = Table[FiscalMonthYear]
VAR FilteredTable =
    FILTER ( ALL ( Table ), Table[FiscalMonthYear] = FMY )
 //Fiscal Month Start Date
VAR FMSD =
    MINX ( FilteredTable, Table[Date] )
// Fiscal Month End Date
VAR FMED =
    MAXX ( FilteredTable, Table[Date] )
RETURN
    SWITCH ( TRUE (), td &amp;gt;= FMSD &amp;amp;&amp;amp; td &amp;lt;= FMED, TRUE (), FALSE () )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 07:04:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1260996#M20984</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-30T07:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1262917#M21084</link>
      <description>&lt;P&gt;Dear guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks you so much for your help!&lt;/P&gt;&lt;P&gt;It is still not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find attached an excel file with our fiscal calendar.&lt;/P&gt;&lt;P&gt;&lt;A href="https://workupload.com/file/s9M34aWLhKu" target="_blank"&gt;https://workupload.com/file/s9M34aWLhKu&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 17:21:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1262917#M21084</guid>
      <dc:creator>joshua1990</dc:creator>
      <dc:date>2020-07-30T17:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1262984#M21086</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;: Thanks! Your approach is working!&lt;/P&gt;&lt;P&gt;Is it possible to add your approach into a RETURN ( ROW Approach?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 17:51:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1262984#M21086</guid>
      <dc:creator>joshua1990</dc:creator>
      <dc:date>2020-07-30T17:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1263668#M21117</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92006" data-lia-user-login="joshua1990" class="lia-mention lia-mention-user"&gt;joshua1990&lt;/a&gt;&amp;nbsp;Glad it's working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't understand what do you mean by RETURN ROW approach. Can you share an example?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 03:47:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1263668#M21117</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-31T03:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1263931#M21124</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;Thank you so much for your support.&lt;/P&gt;&lt;P&gt;I have build the calendar like following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Calendar = 
VAR BaseCalendar =
    CALENDAR ( DATE ( 2018, 12, 31 ), DATE ( 2022, 01, 03 ) )
RETURN
    GENERATE (
        BaseCalendar,
        VAR BaseDate = [Date]
        VAR IsWorkingDay =
            IF ( WEEKDAY ( BaseDate, 2 ) &amp;gt; 5, FALSE (), TRUE () )
        VAR WorkingDayFactor =
            IF ( IsWorkingDay = TRUE (), 0, 1 )
        VAR Year =
            YEAR ( BaseDate )
        VAR MonthNumber =
            MONTH ( BaseDate )
        VAR WeekNumber =
            WEEKNUM ( BaseDate ) 
        VAR FiscWeek =
            WEEKNUM ( BaseDate, 21 )
        VAR FiscWeekTxt =
            FORMAT(WEEKNUM ( BaseDate, 21 ), "00")
        VAR FiscMonth =
            SWITCH (
                TRUE (),
                JnJWeek IN { 1, 2, 3, 4 }, 1,
                JnJWeek IN { 5, 6, 7, 8 }, 2,
                JnJWeek IN { 9, 10, 11, 12, 13 }, 3,
                JnJWeek IN { 14, 15, 16, 17 }, 4,
                JnJWeek IN { 18, 19, 20, 21 }, 5,
                JnJWeek IN { 22, 23, 24, 25, 26 }, 6,
                JnJWeek IN { 27, 28, 29, 30 }, 7,
                JnJWeek IN { 31, 32, 33, 34 }, 8,
                JnJWeek IN { 35, 36, 37, 38, 39 }, 9,
                JnJWeek IN { 40, 41, 42, 43 }, 10,
                JnJWeek IN { 44, 45, 46, 47 }, 11,
                JnJWeek IN { 48, 49, 50, 51, 52, 53 }, 12
            )
        VAR FiscYear =
            IF (
                FiscWeek &amp;lt; 5
                    &amp;amp;&amp;amp; WeekNumber &amp;gt; 50,
                Year + 1,
                IF ( FiscWeek &amp;gt; 50 &amp;amp;&amp;amp; WeekNumber &amp;lt; 5, Year - 1, Year )
            )
        RETURN
            ROW (
                "Year", Year,
                "Month Number", MonthNumber,
                "Month", FORMAT ( BaseDate, "mmmm" ),
                "Year Month", FORMAT ( BaseDate, "yyyy-mm" ),
                "Day of Week", FORMAT ( BaseDate, "dddd" ),
                "Day of Week Number", WEEKDAY ( BaseDate, 2 ),
                "Day of Week Short", FORMAT ( BaseDate, "ddd" ),
                "IsWorkingDay", IF ( IsWorkingDay = TRUE () &amp;amp;&amp;amp; IsHoliday = FALSE (), 1, 0 ),
                "Week", WeekNumber,
                "Year-Week", Year &amp;amp; "-" &amp;amp; WeekNumber,
                "Fisc Week", FiscWeek,
                "Fisc Year-WK", FiscYear &amp;amp; "-" &amp;amp; FiscWeekTxt,
                "Fisc Month Short", SWITCH (
                    TRUE (),
                    FiscMonth IN { 1 }, "Jan",
                    FiscMonth IN { 2 }, "Feb",
                    FiscMonth IN { 3 }, "Mar",
                    FiscMonth IN { 4 }, "Apr",
                    FiscMonth IN { 5 }, "May",
                    FiscMonth IN { 6 }, "Jun",
                    FiscMonth IN { 7 }, "Jul",
                    FiscMonth IN { 8 }, "Aug",
                    FiscMonth IN { 9 }, "Sep",
                    FiscMonth IN { 10 }, "Oct",
                    FiscMonth IN { 11 }, "Nov",
                    FiscMonth IN { 12 }, "Dec"
                )
            )
    )&lt;/LI-CODE&gt;&lt;P&gt;(It's just a snapshot of the whole code)&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 06:01:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1263931#M21124</guid>
      <dc:creator>joshua1990</dc:creator>
      <dc:date>2020-07-31T06:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Current Fiscal Month TRUE FALSE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1264163#M21131</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92006" data-lia-user-login="joshua1990" class="lia-mention lia-mention-user"&gt;joshua1990&lt;/a&gt;&amp;nbsp; You can try using ADDCOLUMNS function like this.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Calendar = 
VAR BaseCalendar =
    CALENDAR ( DATE ( 2018, 12, 31 ), DATE ( 2022, 01, 03 ) )
VAR FiscalCalendar = 
    GENERATE (
        BaseCalendar,
        VAR BaseDate = [Date]
        VAR IsWorkingDay =
            IF ( WEEKDAY ( BaseDate, 2 ) &amp;gt; 5, FALSE (), TRUE () )
        VAR WorkingDayFactor =
            IF ( IsWorkingDay = TRUE (), 0, 1 )
        VAR Year =
            YEAR ( BaseDate )
        VAR MonthNumber =
            MONTH ( BaseDate )
        VAR WeekNumber =
            WEEKNUM ( BaseDate ) 
        VAR FiscWeek =
            WEEKNUM ( BaseDate, 21 )
        VAR FiscWeekTxt =
            FORMAT(WEEKNUM ( BaseDate, 21 ), "00")
        
        VAR FiscYear =
            IF (
                FiscWeek &amp;lt; 5
                    &amp;amp;&amp;amp; WeekNumber &amp;gt; 50,
                Year + 1,
                IF ( FiscWeek &amp;gt; 50 &amp;amp;&amp;amp; WeekNumber &amp;lt; 5, Year - 1, Year )
            )
        RETURN
            ROW (
                "Year", Year,
                "Month Number", MonthNumber,
                "Month", FORMAT ( BaseDate, "mmmm" ),
                "Year Month", FORMAT ( BaseDate, "yyyy-mm" ),
                "Day of Week", FORMAT ( BaseDate, "dddd" ),
                "Day of Week Number", WEEKDAY ( BaseDate, 2 ),
                "Day of Week Short", FORMAT ( BaseDate, "ddd" ),
                "IsWorkingDay", IF ( IsWorkingDay = TRUE (), 1, 0 ),
                "Week", WeekNumber,
                "Year-Week", Year &amp;amp; "-" &amp;amp; WeekNumber,
                "Fisc Week", FiscWeek,
                "Fisc Year-WK", FiscYear &amp;amp; "-" &amp;amp; FiscWeekTxt
            )
    )
VAR RESULT = ADDCOLUMNS
                    (
                    FiscalCalendar
                    , "IsCurrentFiscalMonth"
                    , VAR td = TODAY ()
                        VAR FMY = [Year Month]
                        VAR FilteredTable =
                                FILTER (FiscalCalendar , [Year Month] =  FMY )
                         //Fiscal Month Start Date
                        VAR FMSD =
                            MINX ( FilteredTable, [Date] )
                        // Fiscal Month End Date
                        VAR FMED =
                            MAXX ( FilteredTable, [Date])
                        RETURN 
                            SWITCH ( TRUE (), td &amp;gt;= FMSD &amp;amp;&amp;amp; td &amp;lt;= FMED, TRUE (), FALSE () )
                    )
RETURN RESULT
&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have modified your DAX expression becuause few of the variables were missing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyways you can use ADDCOLUMNS function as shown above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 07:40:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Current-Fiscal-Month-TRUE-FALSE/m-p/1264163#M21131</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-31T07:40:24Z</dc:date>
    </item>
  </channel>
</rss>

