<?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 get Month &amp;amp; Year from the date column using DAX Measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-Month-amp-Year-from-the-date-column-using-DAX-Measure/m-p/3267560#M120995</link>
    <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please try&lt;/P&gt;
&lt;P&gt;Month_year =&lt;BR /&gt;FORMAT ( SELECTEDVALUE ( Incidents[sys_created_on] ), "mmm-yy" )&lt;/P&gt;</description>
    <pubDate>Mon, 05 Jun 2023 02:29:26 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2023-06-05T02:29:26Z</dc:date>
    <item>
      <title>How to get Month &amp; Year from the date column using DAX Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-Month-amp-Year-from-the-date-column-using-DAX-Measure/m-p/3267508#M120993</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a date column named 'sys created on'. I want to get the&amp;nbsp;Month &amp;amp; Year from this date column using DAX Measure. And put it in a sequence of last 12 months instead of alphabetical order or January to December.&lt;/P&gt;&lt;P&gt;The output should be in format &lt;STRONG&gt;'Jan-23'&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;I can achieve this by writing a DAX in calculated column&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Month_year = CONCATENATE(FORMAT(Incidents[sys_created_on].[Date],"mmm"),CONCATENATE("-",(FORMAT(Incidents[sys_created_on].[Date],"YY"))))&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;However, I dont have an option to create a calculated column and can only write measure. Can you tell me how can we write a DAX measure to achieve the same result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 01:41:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-Month-amp-Year-from-the-date-column-using-DAX-Measure/m-p/3267508#M120993</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-06-05T01:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Month &amp; Year from the date column using DAX Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-Month-amp-Year-from-the-date-column-using-DAX-Measure/m-p/3267560#M120995</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please try&lt;/P&gt;
&lt;P&gt;Month_year =&lt;BR /&gt;FORMAT ( SELECTEDVALUE ( Incidents[sys_created_on] ), "mmm-yy" )&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 02:29:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-Month-amp-Year-from-the-date-column-using-DAX-Measure/m-p/3267560#M120995</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-06-05T02:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Month &amp; Year from the date column using DAX Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-Month-amp-Year-from-the-date-column-using-DAX-Measure/m-p/3267686#M121004</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;for your quick response. I tried the DAX suggested by you. However, it does not dispay anything.&lt;/P&gt;&lt;P&gt;Please see the below snapshot.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 05:04:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-Month-amp-Year-from-the-date-column-using-DAX-Measure/m-p/3267686#M121004</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-06-05T05:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Month &amp; Year from the date column using DAX Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-Month-amp-Year-from-the-date-column-using-DAX-Measure/m-p/3267710#M121006</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Month_year =
FORMAT ( MAX ( Incidents[sys_created_on] ), "mmm-yy" )&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 05 Jun 2023 05:37:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-Month-amp-Year-from-the-date-column-using-DAX-Measure/m-p/3267710#M121006</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-06-05T05:37:23Z</dc:date>
    </item>
  </channel>
</rss>

