<?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 create a slicer with MTD, YTD and Month YYYY options in desired sequence? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-slicer-with-MTD-YTD-and-Month-YYYY-options-in/m-p/978579#M11901</link>
    <description>&lt;P&gt;Create a table with an Enter Data query and put in your Sort manually in there along with your slicer selections. Use Sort By.&lt;/P&gt;</description>
    <pubDate>Tue, 17 Mar 2020 17:09:03 GMT</pubDate>
    <dc:creator>Greg_Deckler</dc:creator>
    <dc:date>2020-03-17T17:09:03Z</dc:date>
    <item>
      <title>How to create a slicer with MTD, YTD and Month YYYY options in desired sequence?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-slicer-with-MTD-YTD-and-Month-YYYY-options-in/m-p/978563#M11899</link>
      <description>&lt;P&gt;I want to create a slicer with a list of months (month year) sorted by most recent first.&lt;BR /&gt;However, before the list of months I want MTD, Last Month, YTD and Last Year options.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;For example:-&lt;/P&gt;&lt;P&gt;MTD&lt;BR /&gt;Last Month&lt;BR /&gt;YTD (excluding last month)&lt;BR /&gt;Last Year&lt;BR /&gt;March2020&lt;BR /&gt;February 2020&lt;BR /&gt;January 2020&lt;BR /&gt;December 2019&lt;BR /&gt;November 2019&lt;BR /&gt;October 2019&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created the following DAX table with a bidirectional relationship to DimDate.&lt;BR /&gt;It works a treat but I don’t know how to sort the slicer into the above desired order.&lt;/P&gt;&lt;P&gt;I tried adding a “sort key” and then using the Modelling ‘sort by column’ option on the Selection field, but I can’t because the sort key must be unique.&lt;/P&gt;&lt;P&gt;Any suggestions would be appreciated, thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;List Of&amp;nbsp; Periods =&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#339966"&gt;// get start &amp;amp; end date for MTD, Last month, YTD and Last Year&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR MTDStart = CALCULATE(MIN('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=0))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR MTDEnd = CALCULATE(MAX('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=0))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR LastMonthStart = CALCULATE(MIN('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-1))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR LastMonthEnd = CALCULATE(MAX('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-1))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR YTDStart = CALCULATE(MIN('DimDate'[Date]),FILTER('DimDate','DimDate'[YearOffset]=0))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR YTDEnd = CALCULATE(MAX('DimDate'[Date]),FILTER('DimDate','DimDate'[YearOffset]=0))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR LastYearStart = CALCULATE(MIN('DimDate'[Date]),FILTER('DimDate','DimDate'[YearOffset]=-1))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR LastYearEnd = CALCULATE(MAX('DimDate'[Date]),FILTER('DimDate','DimDate'[YearOffset]=-1))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#339966"&gt;// get start &amp;amp; end date and name for each month&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M1Start = CALCULATE(MIN('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-1))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M1End = CALCULATE(MAX('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-1))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M1Name = CALCULATE(MAX('DimDate'[LongMonthYear]),FILTER('DimDate','DimDate'[MonthOffset]=-1))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M2Start = CALCULATE(MIN('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-2))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M2End = CALCULATE(MAX('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-2))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M2Name = CALCULATE(MAX('DimDate'[LongMonthYear]),FILTER('DimDate','DimDate'[MonthOffset]=-2))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M3Start = CALCULATE(MIN('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-3))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M3End = CALCULATE(MAX('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-3))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M3Name = CALCULATE(MAX('DimDate'[LongMonthYear]),FILTER('DimDate','DimDate'[MonthOffset]=-3))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M4Start = CALCULATE(MIN('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-4))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M4End = CALCULATE(MAX('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-4))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M4Name = CALCULATE(MAX('DimDate'[LongMonthYear]),FILTER('DimDate','DimDate'[MonthOffset]=-4))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M5Start = CALCULATE(MIN('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-5))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M5End = CALCULATE(MAX('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-5))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M5Name = CALCULATE(MAX('DimDate'[LongMonthYear]),FILTER('DimDate','DimDate'[MonthOffset]=-5))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M6Start = CALCULATE(MIN('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-6))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M6End = CALCULATE(MAX('DimDate'[Date]),FILTER('DimDate','DimDate'[MonthOffset]=-6))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;VAR M6Name = CALCULATE(MAX('DimDate'[LongMonthYear]),FILTER('DimDate','DimDate'[MonthOffset]=-6))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;RETURN&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#339966"&gt;// Create and join list of dates for each period&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;UNION (&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;ADDCOLUMNS(&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALENDAR(MTDStart,MTDEnd),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Sort key",1,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Selection", "MTD"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;ADDCOLUMNS(&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALENDAR(LastMonthStart,LastMonthEnd),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Sort key",2,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Selection", "Last month"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;ADDCOLUMNS(&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALENDAR(YTDStart,YTDEnd),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Sort key",4,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Selection", "YTD"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;ADDCOLUMNS(&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALENDAR(LastYearStart,LastYearEnd),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Sort key",5,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Selection", "Last year"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;ADDCOLUMNS(&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALENDAR(M1Start,M1End),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Sort key",6,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Selection", M1Name&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;ADDCOLUMNS(&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALENDAR(M2Start,M2End),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Sort key",7,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Selection", M2Name&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;ADDCOLUMNS(&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALENDAR(M3Start,M3End),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Sort key",8,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Selection", M3Name&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;ADDCOLUMNS(&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALENDAR(M4Start,M4End),&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Sort key",9,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Selection", M4Name&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="ics-element-donot-delete 1001_CC@"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 16:57:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-slicer-with-MTD-YTD-and-Month-YYYY-options-in/m-p/978563#M11899</guid>
      <dc:creator>speedramps</dc:creator>
      <dc:date>2020-03-17T16:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a slicer with MTD, YTD and Month YYYY options in desired sequence?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-slicer-with-MTD-YTD-and-Month-YYYY-options-in/m-p/978579#M11901</link>
      <description>&lt;P&gt;Create a table with an Enter Data query and put in your Sort manually in there along with your slicer selections. Use Sort By.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 17:09:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-slicer-with-MTD-YTD-and-Month-YYYY-options-in/m-p/978579#M11901</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-03-17T17:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a slicer with MTD, YTD and Month YYYY options in desired sequence?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-slicer-with-MTD-YTD-and-Month-YYYY-options-in/m-p/978608#M11903</link>
      <description>&lt;P&gt;Thank you Greg for the 'Enter Data' suggestion.&lt;BR /&gt;However, that wont't that create a static table?&amp;nbsp; I want my slicer to be dynamic and refresh each month.&lt;BR /&gt;&lt;BR /&gt;I could use Power Query M but I thought a DAX table would be easier, and it was easy upto the point I got stuck with the sort.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 17:29:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-slicer-with-MTD-YTD-and-Month-YYYY-options-in/m-p/978608#M11903</guid>
      <dc:creator>speedramps</dc:creator>
      <dc:date>2020-03-17T17:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a slicer with MTD, YTD and Month YYYY options in desired sequence?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-slicer-with-MTD-YTD-and-Month-YYYY-options-in/m-p/985701#M12135</link>
      <description>Model tables in PBI are refreshed ONLY when data is refreshed from its source. There is no other way.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Sun, 22 Mar 2020 13:59:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-slicer-with-MTD-YTD-and-Month-YYYY-options-in/m-p/985701#M12135</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-22T13:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a slicer with MTD, YTD and Month YYYY options in desired sequence?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-slicer-with-MTD-YTD-and-Month-YYYY-options-in/m-p/985705#M12136</link>
      <description>I don't believe that you cannot sort Selection by Sort Key. The values in both columns are in 1-1 correspondence and therefore you CAN order Selection by Sort Key.&lt;BR /&gt;&lt;BR /&gt;If PBI tells you it can't, then it means they are NOT in 1-1 correspondence. Check you code.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Sun, 22 Mar 2020 14:10:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-slicer-with-MTD-YTD-and-Month-YYYY-options-in/m-p/985705#M12136</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-22T14:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a slicer with MTD, YTD and Month YYYY options in desired sequence?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-slicer-with-MTD-YTD-and-Month-YYYY-options-in/m-p/985727#M12137</link>
      <description>Many thanks for all the replies.&lt;BR /&gt;I decided to use Power Query M instead of DAX. It works a treat. Consider the matter closed. Thank you.</description>
      <pubDate>Sun, 22 Mar 2020 14:34:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-slicer-with-MTD-YTD-and-Month-YYYY-options-in/m-p/985727#M12137</guid>
      <dc:creator>speedramps</dc:creator>
      <dc:date>2020-03-22T14:34:28Z</dc:date>
    </item>
  </channel>
</rss>

