<?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: calculated column for FED FY in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1589913#M31919</link>
    <description>&lt;P&gt;I think I just figured it out, I will report back once finished.&lt;/P&gt;</description>
    <pubDate>Mon, 11 Jan 2021 15:22:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-01-11T15:22:10Z</dc:date>
    <item>
      <title>calculated column for FED FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1588139#M31845</link>
      <description>&lt;P&gt;Hello All-----I have a Column titled "Date Value" and it has various dates in this specific format: 8/1/2020 (M/DD/YYY)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to create a new column titled "Fiscal Year." I need DAX formula for this column so that it will look in the "Date Value" Column and if there is a month that begins with:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;10, 11, 12 it will return "1st Qtr" in the new "Fiscal Year"column&lt;/P&gt;&lt;P&gt;1, 2, 3 it will return "2nd Qtr" in the new "Fiscal Year" column&lt;/P&gt;&lt;P&gt;4, 5, 6 it will return "3rd Qtr" in the new "Fiscal Year" column&lt;/P&gt;&lt;P&gt;7, 8, 9 it will return "4th Qtr" in the new "Fiscal Year" column&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any help!&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2021 18:04:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1588139#M31845</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-08T18:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: calculated column for FED FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1588218#M31851</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this out...&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SWITCH(
	TRUE(),
	MONTH([Date Value]) = 1, "2nd Qtr"
	MONTH([Date Value]) = 2, "2nd Qtr"
	MONTH([Date Value]) = 3, "2nd Qtr"
	MONTH([Date Value]) = 4, "3rd Qtr"
	MONTH([Date Value]) = 5, "3rd Qtr"
	MONTH([Date Value]) = 6, "3rd Qtr"
	MONTH([Date Value]) = 7, "4th Qtr"
	MONTH([Date Value]) = 8, "4th Qtr"
	MONTH([Date Value]) = 9, "4th Qtr"
	MONTH([Date Value]) = 10, "1st Qtr"
	MONTH([Date Value]) = 11, "1st Qtr"
	MONTH([Date Value]) = 12, "1st Qtr"
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2021 19:24:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1588218#M31851</guid>
      <dc:creator>littlemojopuppy</dc:creator>
      <dc:date>2021-01-08T19:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: calculated column for FED FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1588356#M31862</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , While you can use the solution posted first, below. I would suggest to use a calendar table. Please find the calendar table for Oct-Sep after signature. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Jan 2021 01:50:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1588356#M31862</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-01-09T01:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: calculated column for FED FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1588362#M31863</link>
      <description>&lt;P&gt;&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;In all seriousness thank you for at least acknowledging that another solution was previously offered.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For what it's worth, I'd go with your solution of putting the quarter in the date table. &amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp; you really should do that. &amp;nbsp;Makes it much easier.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Jan 2021 01:57:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1588362#M31863</guid>
      <dc:creator>littlemojopuppy</dc:creator>
      <dc:date>2021-01-09T01:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: calculated column for FED FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1588369#M31864</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="17198" data-lia-user-login="littlemojopuppy" class="lia-mention lia-mention-user"&gt;littlemojopuppy&lt;/a&gt; , Since only few days back the last solution starting to come on top. That means if user does not scroll and if see a solution on top, which is working, he will take that; and first soluion will not get credit. I realized that. I and trying do same whenever I post second or after. But if it is parallel reply, I might miss.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Jan 2021 02:08:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1588369#M31864</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-01-09T02:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: calculated column for FED FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1588378#M31865</link>
      <description>&lt;P&gt;&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;I've noticed that too and honestly not a fan.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But you can see that a solution has been offered. &amp;nbsp;You think it's totally wrong, have at it. &amp;nbsp;We all want to help. &amp;nbsp;AiB offered a solution today at basically the same time I offered one I told the user to use hers because it was eloquent...so much better than what I offered.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But you posting links to the exact same articles, offering solutions that are virtually identical to previously offered solutions is not cool. &amp;nbsp;Multiple threads on the same topic most likely confuses users and it shows no respect to others who are trying to help the users.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Jan 2021 02:20:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1588378#M31865</guid>
      <dc:creator>littlemojopuppy</dc:creator>
      <dc:date>2021-01-09T02:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: calculated column for FED FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1589901#M31918</link>
      <description>&lt;P&gt;Thanks----when I use the whole script like you typed it, I get a syntax error. However when I use your example for just 1 month, like the first line (=1, 2nd Qtr) it works perfect. Is there commas or anything else missing in order for the whole expression with all months like you have it to work?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 15:15:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1589901#M31918</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-11T15:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: calculated column for FED FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1589913#M31919</link>
      <description>&lt;P&gt;I think I just figured it out, I will report back once finished.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 15:22:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1589913#M31919</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-11T15:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: calculated column for FED FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1589935#M31921</link>
      <description>&lt;P&gt;I figured it out using your solution, many thanks-----works perfect!&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 15:34:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/calculated-column-for-FED-FY/m-p/1589935#M31921</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-11T15:34:06Z</dc:date>
    </item>
  </channel>
</rss>

