<?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 Value of last 6 months not  the same in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-of-last-6-months-not-the-same/m-p/2503124#M69248</link>
    <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Hi&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;</description>
    <pubDate>Wed, 11 May 2022 18:20:52 GMT</pubDate>
    <dc:creator>ALEX2011ALfer_</dc:creator>
    <dc:date>2022-05-11T18:20:52Z</dc:date>
    <item>
      <title>Value of last 6 months not  the same</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-of-last-6-months-not-the-same/m-p/2503124#M69248</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Hi&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;</description>
      <pubDate>Wed, 11 May 2022 18:20:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-of-last-6-months-not-the-same/m-p/2503124#M69248</guid>
      <dc:creator>ALEX2011ALfer_</dc:creator>
      <dc:date>2022-05-11T18:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: Value of last 6 months not  the same</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-of-last-6-months-not-the-same/m-p/2503255#M69254</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="369728" data-lia-user-login="ALEX2011ALfer_" class="lia-mention lia-mention-user"&gt;ALEX2011ALfer_&lt;/a&gt;&amp;nbsp;You may find this helpful - &lt;A href="https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TITHW/m-p/434008" target="_blank"&gt;https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TITHW/m-p/434008&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 00:42:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-of-last-6-months-not-the-same/m-p/2503255#M69254</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-05-10T00:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Value of last 6 months not  the same</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-of-last-6-months-not-the-same/m-p/2510164#M69603</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="369728" data-lia-user-login="ALEX2011ALfer_" class="lia-mention lia-mention-user"&gt;ALEX2011ALfer_&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you mean which value is unique in the last 6 months?&lt;/P&gt;
&lt;P&gt;Create measure via the following code and put it in filter pane on this visual and set it show items is 1, then you will see the unique value in the table.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
VAR _currentdate =
    TODAY ()
VAR _start =
    DATE ( YEAR ( _currentdate ), MONTH ( _currentdate ), 1 )
VAR _range =
    DATESINPERIOD ( 'Table'[Date], _start, -6, MONTH )
VAR _last_6_months_value =
    CALCULATETABLE ( 'Table', _range )
RETURN
    COUNTROWS ( _last_6_months_value )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or you want to show the values which is not appear during last 6 months.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Value of last 6 months not the same =
VAR _currentdate =
    TODAY ()
VAR _start =
    DATE ( YEAR ( _currentdate ), MONTH ( _currentdate ), 1 )
VAR _range =
    DATESINPERIOD ( 'Table'[Date], _start, -6, MONTH )
VAR _last_6_months_value =
    CALCULATETABLE ( VALUES ( 'Table'[values] ), _range )
VAR _current_month =
    CALCULATETABLE ( VALUES ( 'Table'[values] ), DATESMTD ( 'Table'[Date] ) )
VAR _new_value =
    EXCEPT ( _current_month, _last_6_months_value )
RETURN
    CONCATENATEX ( _new_value, [values], " " )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Pbix file in the end you can refer.&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;
&lt;P&gt;Community Support Team _ chenwu zhu&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 09:48:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-of-last-6-months-not-the-same/m-p/2510164#M69603</guid>
      <dc:creator>v-chenwuz-msft</dc:creator>
      <dc:date>2022-05-12T09:48:41Z</dc:date>
    </item>
  </channel>
</rss>

