<?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: Week Filter in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Filter/m-p/2561257#M72869</link>
    <description>&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;Привіт&amp;nbsp; &lt;/FONT&gt;&lt;/FONT&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="385120" data-lia-user-login="jiji" class="lia-mention lia-mention-user"&gt;jiji&lt;/a&gt;&lt;FONT&gt;&lt;FONT&gt;&amp;nbsp;,&amp;nbsp;&amp;nbsp;Try it&lt;/FONT&gt;&lt;/FONT&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;= " " MIN(data[dates]) і "-" MAX(data[dates])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but the 23rd week of 2022 is June&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 06 Jun 2022 13:47:42 GMT</pubDate>
    <dc:creator>DimaMD</dc:creator>
    <dc:date>2022-06-06T13:47:42Z</dc:date>
    <item>
      <title>Week Filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Filter/m-p/2561112#M72862</link>
      <description>&lt;P&gt;Hi Guys - Could you please help me create a week filter that could describe the days of the selected week? Can that be done in Power BI?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I have date filters; Year, Months, &amp;amp; WeekOfYear, and my lead would like to&amp;nbsp; see the days within the selected week num. Say, If We select 2022 May, week 23, we should be a able to&amp;nbsp; see "May 29 - June 4" or "May 22 - May 28".&lt;BR /&gt;&lt;BR /&gt;I could have just&amp;nbsp; add a separate day filter but they want it within the week filter. Is it possible?`&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 12:22:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Filter/m-p/2561112#M72862</guid>
      <dc:creator>jiji</dc:creator>
      <dc:date>2022-06-06T12:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Week Filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Filter/m-p/2561257#M72869</link>
      <description>&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;Привіт&amp;nbsp; &lt;/FONT&gt;&lt;/FONT&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="385120" data-lia-user-login="jiji" class="lia-mention lia-mention-user"&gt;jiji&lt;/a&gt;&lt;FONT&gt;&lt;FONT&gt;&amp;nbsp;,&amp;nbsp;&amp;nbsp;Try it&lt;/FONT&gt;&lt;/FONT&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;= " " MIN(data[dates]) і "-" MAX(data[dates])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but the 23rd week of 2022 is June&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 13:47:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Filter/m-p/2561257#M72869</guid>
      <dc:creator>DimaMD</dc:creator>
      <dc:date>2022-06-06T13:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Week Filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Filter/m-p/2567853#M73224</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="385120" data-lia-user-login="jiji" class="lia-mention lia-mention-user"&gt;jiji&lt;/a&gt;&amp;nbsp;;&lt;/P&gt;
&lt;P&gt;You could create a measure then add it into card.&lt;/P&gt;
&lt;LI-CODE lang="java"&gt;Measure = CALCULATE(MIN('Table'[Date]),REMOVEFILTERS('Table'[Day],'Table'[Month])) &amp;amp;
"-"&amp;amp;CALCULATE(MAX('Table'[Date]),REMOVEFILTERS('Table'[Day],'Table'[Month]))&lt;/LI-CODE&gt;
&lt;P&gt;The final output is shown below:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Yalan Wu&lt;BR /&gt;If this post &lt;STRONG&gt;&lt;I&gt;helps&lt;/I&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 02:59:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Filter/m-p/2567853#M73224</guid>
      <dc:creator>v-yalanwu-msft</dc:creator>
      <dc:date>2022-06-09T02:59:33Z</dc:date>
    </item>
  </channel>
</rss>

