<?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 How to get month Number In DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-month-Number-In-DAX/m-p/4620828#M176850</link>
    <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the question&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF(Jan =01,&lt;BR /&gt;(Feb= 02,&lt;BR /&gt;(Mar=03.&lt;BR /&gt;.&lt;BR /&gt;..&lt;BR /&gt;..&lt;BR /&gt;Dec=12))))))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check how we can achieve on the DAX measaure&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 22 Mar 2025 11:02:06 GMT</pubDate>
    <dc:creator>krishna_murthy</dc:creator>
    <dc:date>2025-03-22T11:02:06Z</dc:date>
    <item>
      <title>How to get month Number In DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-month-Number-In-DAX/m-p/4620828#M176850</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the question&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF(Jan =01,&lt;BR /&gt;(Feb= 02,&lt;BR /&gt;(Mar=03.&lt;BR /&gt;.&lt;BR /&gt;..&lt;BR /&gt;..&lt;BR /&gt;Dec=12))))))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check how we can achieve on the DAX measaure&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Mar 2025 11:02:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-month-Number-In-DAX/m-p/4620828#M176850</guid>
      <dc:creator>krishna_murthy</dc:creator>
      <dc:date>2025-03-22T11:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to get month Number In DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-month-Number-In-DAX/m-p/4620856#M176855</link>
      <description>&lt;P&gt;If you have a date you can extract with&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;month( table[date])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Otherwise you will have to use&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Switch(&lt;/P&gt;&lt;P&gt;Selectedvalue( table[month name])&lt;/P&gt;&lt;P&gt;,"Jan", 1,&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;</description>
      <pubDate>Sat, 22 Mar 2025 11:45:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-month-Number-In-DAX/m-p/4620856#M176855</guid>
      <dc:creator>Deku</dc:creator>
      <dc:date>2025-03-22T11:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to get month Number In DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-month-Number-In-DAX/m-p/4621113#M176866</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;month number CC =
FORMAT (
    CONVERT (
        YEAR ( TODAY () ) &amp;amp; "-" &amp;amp; 'month'[month name] &amp;amp; "-"
            &amp;amp; DAY ( TODAY () ),
        DATETIME
    ),
    "mm"
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 23 Mar 2025 05:56:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-month-Number-In-DAX/m-p/4621113#M176866</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2025-03-23T05:56:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to get month Number In DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-month-Number-In-DAX/m-p/4677336#M179137</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1082687" data-lia-user-login="krishna_murthy" class="lia-mention lia-mention-user"&gt;krishna_murthy&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If the response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 10:21:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-month-Number-In-DAX/m-p/4677336#M179137</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2025-05-02T10:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to get month Number In DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-month-Number-In-DAX/m-p/4679635#M179242</link>
      <description>&lt;P&gt;&lt;SPAN data-teams="true"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1082687" data-lia-user-login="krishna_murthy" class="lia-mention lia-mention-user"&gt;krishna_murthy&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;I hope the provided information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please &lt;STRONG&gt;Accept it as a solution&lt;/STRONG&gt; and give it a '&lt;STRONG&gt;Kudos&lt;/STRONG&gt;' so others can find it easily.&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 07:07:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-month-Number-In-DAX/m-p/4679635#M179242</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2025-05-05T07:07:16Z</dc:date>
    </item>
  </channel>
</rss>

