<?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: How to sort my fiscal month column e.g. JUL 01 , AUG 01 in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sort-my-fiscal-month-column-e-g-JUL-01-AUG-01/m-p/2512249#M69718</link>
    <description>&lt;P&gt;Thank you so much was very helpful&lt;/P&gt;</description>
    <pubDate>Fri, 13 May 2022 05:53:32 GMT</pubDate>
    <dc:creator>mimigabriel</dc:creator>
    <dc:date>2022-05-13T05:53:32Z</dc:date>
    <item>
      <title>How to sort my fiscal month column e.g. JUL 01 , AUG 01</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sort-my-fiscal-month-column-e-g-JUL-01-AUG-01/m-p/2505847#M69395</link>
      <description>&lt;P&gt;Hello Power bi Coummuntiy&amp;nbsp;&lt;/P&gt;&lt;P&gt;I real want to sort the fiscal month column e.g&amp;nbsp;&lt;/P&gt;&lt;P&gt;JUL 01 , AUG 01 ,SEP 01, OCT 01, NOV 01, DEC 01 then it continue&amp;nbsp; like jan 02 feb 02&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Fiscal Month Number = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sales[Month Number]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;6&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sales[Month Number]&lt;/SPAN&gt;&lt;SPAN&gt; - &lt;/SPAN&gt;&lt;SPAN&gt;6&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sales[Month Number]&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;6&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;by creating the above column i sorted the fiscal month. and the output is as shown bleow how can i convert this to the above example. Thank you in advance for your support.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;img /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 10 May 2022 21:09:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sort-my-fiscal-month-column-e-g-JUL-01-AUG-01/m-p/2505847#M69395</guid>
      <dc:creator>mimigabriel</dc:creator>
      <dc:date>2022-05-10T21:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to sort my fiscal month column e.g. JUL 01 , AUG 01</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sort-my-fiscal-month-column-e-g-JUL-01-AUG-01/m-p/2506102#M69403</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="388257" data-lia-user-login="mimigabriel" class="lia-mention lia-mention-user"&gt;mimigabriel&lt;/a&gt; , this for a month name &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Month= FORMAT([Date],"mmm")&lt;BR /&gt;Month sort = if(month([Date]) &amp;lt;=6, month([Date]) +6 ,month([Date]) -6)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Month Year = FORMAT([Date],"mmm-yyyy")&lt;BR /&gt;Month Year sort =if(month([Date]) &amp;lt;=6, year([Date]) -1 ,Year([Date])) *100&amp;nbsp; + if(month([Date]) &amp;lt;=6, month([Date]) +6 ,month([Date]) -6)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2022 01:33:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sort-my-fiscal-month-column-e-g-JUL-01-AUG-01/m-p/2506102#M69403</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-05-11T01:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to sort my fiscal month column e.g. JUL 01 , AUG 01</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sort-my-fiscal-month-column-e-g-JUL-01-AUG-01/m-p/2506638#M69424</link>
      <description>&lt;P&gt;&lt;SPAN&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;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;thank you for your quick replay &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;but the output i want to see is as follow JUL 01 , AUG 01 ,SEP 01, OCT 01, NOV 01, DEC 01 then it continue&amp;nbsp; like jan 02 feb 02&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;please let me know if you have any idea&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;thank you&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2022 06:35:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sort-my-fiscal-month-column-e-g-JUL-01-AUG-01/m-p/2506638#M69424</guid>
      <dc:creator>mimigabriel</dc:creator>
      <dc:date>2022-05-11T06:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to sort my fiscal month column e.g. JUL 01 , AUG 01</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sort-my-fiscal-month-column-e-g-JUL-01-AUG-01/m-p/2512098#M69707</link>
      <description>&lt;P&gt;Hi&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="388257" data-lia-user-login="mimigabriel" class="lia-mention lia-mention-user"&gt;mimigabriel&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I created some data:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. Create calculated column.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Fiscal Month =
FORMAT('Table'[Date],"mmm") &amp;amp;" "&amp;amp; FORMAT('Table'[Date],"dd")&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;rank =
FORMAT([Date],"ddmm")&lt;/LI-CODE&gt;
&lt;P&gt;2. Create calculated table.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table 2 = SUMMARIZE('Table','Table'[Date],'Table'[Fiscal Month],'Table'[rank])&lt;/LI-CODE&gt;
&lt;P&gt;3. Click [Fiscal Month] – sort by column – [rank].&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;4. Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 04:11:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sort-my-fiscal-month-column-e-g-JUL-01-AUG-01/m-p/2512098#M69707</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-05-13T04:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to sort my fiscal month column e.g. JUL 01 , AUG 01</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sort-my-fiscal-month-column-e-g-JUL-01-AUG-01/m-p/2512249#M69718</link>
      <description>&lt;P&gt;Thank you so much was very helpful&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 05:53:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sort-my-fiscal-month-column-e-g-JUL-01-AUG-01/m-p/2512249#M69718</guid>
      <dc:creator>mimigabriel</dc:creator>
      <dc:date>2022-05-13T05:53:32Z</dc:date>
    </item>
  </channel>
</rss>

