<?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 Month start from Friday and end on last Thursday in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Month-start-from-Friday-and-end-on-last-Thursday/m-p/3097284#M108727</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking for a solution for my Power BI project to identify the last &lt;STRONG&gt;Friday&lt;/STRONG&gt; of the previous month as the start of the month and the last &lt;STRONG&gt;Thursday&lt;/STRONG&gt; of the current month as the month's end &lt;span class="lia-unicode-emoji" title=":face_with_rolling_eyes:"&gt;🙄&lt;/span&gt;. If the month ends on 25, the following month will begin on 26. Please see the screenshot for the expected result.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 24 Feb 2023 06:30:24 GMT</pubDate>
    <dc:creator>ajisharavind_99</dc:creator>
    <dc:date>2023-02-24T06:30:24Z</dc:date>
    <item>
      <title>Month start from Friday and end on last Thursday</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Month-start-from-Friday-and-end-on-last-Thursday/m-p/3097284#M108727</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking for a solution for my Power BI project to identify the last &lt;STRONG&gt;Friday&lt;/STRONG&gt; of the previous month as the start of the month and the last &lt;STRONG&gt;Thursday&lt;/STRONG&gt; of the current month as the month's end &lt;span class="lia-unicode-emoji" title=":face_with_rolling_eyes:"&gt;🙄&lt;/span&gt;. If the month ends on 25, the following month will begin on 26. Please see the screenshot for the expected result.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 06:30:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Month-start-from-Friday-and-end-on-last-Thursday/m-p/3097284#M108727</guid>
      <dc:creator>ajisharavind_99</dc:creator>
      <dc:date>2023-02-24T06:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: Month start from Friday and end on last Thursday</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Month-start-from-Friday-and-end-on-last-Thursday/m-p/3097407#M108734</link>
      <description>&lt;P&gt;hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="374068" data-lia-user-login="ajisharavind_99" class="lia-mention lia-mention-user"&gt;ajisharavind_99&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try to add a calculated column like:&lt;/P&gt;&lt;DIV&gt;MonthColumn =&lt;/DIV&gt;&lt;DIV&gt;VAR _month = MONTH(DateTable[Date])&lt;/DIV&gt;&lt;DIV&gt;VAR _lastfriday =&lt;/DIV&gt;&lt;DIV&gt;MAXX(&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;FILTER(&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; DateTable,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; WEEKDAY(&lt;SPAN&gt;DateTable[Date], 2)=5&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;amp;&amp;amp;MONTH(DateTable[Date]) = _month&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;DateTable[Date]&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;[Date]&amp;nbsp;&amp;gt;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;_lastfriday,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;FORMAT(EDATE([Date], 1), "mmm-yy"),&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;FORMAT([Date], "mmm-yy")&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 24 Feb 2023 07:31:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Month-start-from-Friday-and-end-on-last-Thursday/m-p/3097407#M108734</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2023-02-24T07:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Month start from Friday and end on last Thursday</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Month-start-from-Friday-and-end-on-last-Thursday/m-p/3097554#M108741</link>
      <description>&lt;P&gt;&lt;img /&gt;&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;P&gt;For fun only, very simple case for the powerful Excel worksheet formula,&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 08:57:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Month-start-from-Friday-and-end-on-last-Thursday/m-p/3097554#M108741</guid>
      <dc:creator>CNENFRNL</dc:creator>
      <dc:date>2023-02-24T08:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Month start from Friday and end on last Thursday</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Month-start-from-Friday-and-end-on-last-Thursday/m-p/3097650#M108753</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="460868" data-lia-user-login="FreemanZ" class="lia-mention lia-mention-user"&gt;FreemanZ&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Only in December 2022 was an issue found, which begins on Thursday rather than Friday.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 09:28:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Month-start-from-Friday-and-end-on-last-Thursday/m-p/3097650#M108753</guid>
      <dc:creator>ajisharavind_99</dc:creator>
      <dc:date>2023-02-24T09:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Month start from Friday and end on last Thursday</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Month-start-from-Friday-and-end-on-last-Thursday/m-p/3097653#M108754</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="250150" data-lia-user-login="CNENFRNL" class="lia-mention lia-mention-user"&gt;CNENFRNL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 09:29:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Month-start-from-Friday-and-end-on-last-Thursday/m-p/3097653#M108754</guid>
      <dc:creator>ajisharavind_99</dc:creator>
      <dc:date>2023-02-24T09:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Month start from Friday and end on last Thursday</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Month-start-from-Friday-and-end-on-last-Thursday/m-p/3097907#M108777</link>
      <description>&lt;P&gt;Another solution for reference&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 11:56:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Month-start-from-Friday-and-end-on-last-Thursday/m-p/3097907#M108777</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-24T11:56:55Z</dc:date>
    </item>
  </channel>
</rss>

