<?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 Incorrect Month displayed when selecting full year in single choice filter in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Month-displayed-when-selecting-full-year-in-single/m-p/3830411#M149760</link>
    <description>&lt;P&gt;Hello, I have a dashboard that is showing the month /year based on a single choice filter and it works ok, except for when I select the full year ‘2022’ which selects all months up until December. The month in this case displays 'September' (being the last month based on alphabetical order.), but it should show&amp;nbsp;“December’ instead being the last month of the year. I would be ok if it just shows the year too, without the month if that helps. Any suggestions please? Thank you&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Apr 2024 09:56:14 GMT</pubDate>
    <dc:creator>tjordan08</dc:creator>
    <dc:date>2024-04-11T09:56:14Z</dc:date>
    <item>
      <title>Incorrect Month displayed when selecting full year in single choice filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Month-displayed-when-selecting-full-year-in-single/m-p/3830411#M149760</link>
      <description>&lt;P&gt;Hello, I have a dashboard that is showing the month /year based on a single choice filter and it works ok, except for when I select the full year ‘2022’ which selects all months up until December. The month in this case displays 'September' (being the last month based on alphabetical order.), but it should show&amp;nbsp;“December’ instead being the last month of the year. I would be ok if it just shows the year too, without the month if that helps. Any suggestions please? Thank you&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2024 09:56:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Month-displayed-when-selecting-full-year-in-single/m-p/3830411#M149760</guid>
      <dc:creator>tjordan08</dc:creator>
      <dc:date>2024-04-11T09:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect Month displayed when selecting full year in single choice filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Month-displayed-when-selecting-full-year-in-single/m-p/3830506#M149762</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="722519" data-lia-user-login="tjordan08" class="lia-mention lia-mention-user"&gt;tjordan08&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You are using month name column in a date column hiearachy and used 'LAST' as an aggregation, instead create a measure with the below logic&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;maxMonth = 
Var MaxMonthNum = max(Fact_Table[First seen].[MonthNo])
return CALCULATE(MAX(Fact_Table[First seen].[Month]), Fact_Table[First seen].[MonthNo] = MaxMonthNum) &lt;/LI-CODE&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;BR /&gt;&lt;P&gt;If the post helps please give a thumbs up&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;If it solves your issue, please accept it as the solution to help the other members find it more quickly.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Tharun&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2024 10:21:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Month-displayed-when-selecting-full-year-in-single/m-p/3830506#M149762</guid>
      <dc:creator>tharunkumarRTK</dc:creator>
      <dc:date>2024-04-11T10:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect Month displayed when selecting full year in single choice filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Month-displayed-when-selecting-full-year-in-single/m-p/3830849#M149773</link>
      <description>&lt;P&gt;THank you Tharun! I just tried but it is still showing September. This is the formula:&lt;/P&gt;&lt;P&gt;maxMonth = Var MaxMonthNum = max('Calendar'[Month]) return CALCULATE(MAX('Calendar'[Month]), 'Calendar'[Month]= MaxMonthNum)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or like this which gave me an error?&lt;/P&gt;&lt;P&gt;maxMonth = Var MaxMonthNum = max('Calendar’[First seen].[Month]) return CALCULATE(MAX('Calendar'[First seen].[Month]), 'Calendar'[First seen].[Month]= MaxMonthNum)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anything I missed?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2024 12:37:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Month-displayed-when-selecting-full-year-in-single/m-p/3830849#M149773</guid>
      <dc:creator>tjordan08</dc:creator>
      <dc:date>2024-04-11T12:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect Month displayed when selecting full year in single choice filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Month-displayed-when-selecting-full-year-in-single/m-p/3831097#M149785</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="722519" data-lia-user-login="tjordan08" class="lia-mention lia-mention-user"&gt;tjordan08&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;try this formula&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;maxMonth = Var MaxMonthNum = max('Calendar'[MonthNo]) return CALCULATE(MAX('Calendar'[Month]), 'Calendar'[MonthNo]= MaxMonthNum)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2024 13:39:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Month-displayed-when-selecting-full-year-in-single/m-p/3831097#M149785</guid>
      <dc:creator>tharunkumarRTK</dc:creator>
      <dc:date>2024-04-11T13:39:07Z</dc:date>
    </item>
  </channel>
</rss>

