<?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: need help with a dax measure based aan date in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113470#M163259</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;good to know that you have figured out the solution. Not sure why your making it complex &lt;SPAN&gt;unnecessarily.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;as per the problem scenario which stated all the solution proposed by community members should work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Aug 2024 12:35:33 GMT</pubDate>
    <dc:creator>Ankur04</dc:creator>
    <dc:date>2024-08-22T12:35:33Z</dc:date>
    <item>
      <title>need help with a dax measure based aan date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113120#M163234</link>
      <description>&lt;P&gt;Hello i need some help. I want to make a measure based on a colum "ordered BY" and&amp;nbsp; "order date" orderd by = text type and order date = date/time type&lt;BR /&gt;&lt;BR /&gt;now i want to make a measure that show me the number of people that have made a order in this year month and last year month so that i know how many people have placed a order in the same month this year/month i want to control this with a year and month slicer&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;so if i select 2023 january i want to know how many people have placed a order in january 2023 that has also placed a order in 2022 in january&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2024 09:01:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113120#M163234</guid>
      <dc:creator>Krijgersss</dc:creator>
      <dc:date>2024-08-22T09:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: need help with a dax measure based aan date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113172#M163236</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="650918" data-lia-user-login="Krijgersss" class="lia-mention lia-mention-user"&gt;Krijgersss&lt;/a&gt;&amp;nbsp;- Some more information about your tables may be necessary but the below DAX should help as a starting point:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;VAR _current =
    COUNT ( Table[Person] )
VAR _month_now =
    MONTH ( MAX ( Table[Order Date] ) )
VAR _year_previous =
    YEAR ( MAX ( Table[Order Date] ) ) - 1
VAR _previous =
    CALCULATE (
        COUNT ( Table[Person] ),
        REMOVEFILTERS ( Table[Order Date] ),
        MONTH ( Table[Order Date] ) = _month_now
            &amp;amp;&amp;amp; YEAR ( Table[Order Date] ) = _year_previous
    )
RETURN
    CALCULATE ( _current, FILTER ( Table, _previous &amp;gt; 0 &amp;amp;&amp;amp; _current &amp;gt; 0 ) )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this works, please accept it as a solution for the visibility of others.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2024 09:27:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113172#M163236</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-08-22T09:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: need help with a dax measure based aan date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113309#M163244</link>
      <description>&lt;P&gt;it comes out one table and i have a calender table for the slicers year and month i also want this measure for last year, this year YTD, last year YTD&lt;BR /&gt;&lt;BR /&gt;i already has the value of the total so if i divide it i get the right % value&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2024 10:12:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113309#M163244</guid>
      <dc:creator>Krijgersss</dc:creator>
      <dc:date>2024-08-22T10:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: need help with a dax measure based aan date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113316#M163245</link>
      <description>&lt;P&gt;so i want a number of people that has made a order in the same month last year and month&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;so if i select 2024 januari i want to see a number of people that also made a order in 2023 in january&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2024 10:14:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113316#M163245</guid>
      <dc:creator>Krijgersss</dc:creator>
      <dc:date>2024-08-22T10:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: need help with a dax measure based aan date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113328#M163248</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="650918" data-lia-user-login="Krijgersss" class="lia-mention lia-mention-user"&gt;Krijgersss&lt;/a&gt;&amp;nbsp;- Have you tried my solution? If you have a calendar table, you just need to change the section below, as these fields will be used in your slicers:&amp;nbsp;&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;VAR _month_now =
    MAX ( Calendar Table[Month] ) 
VAR _year_previous =
    MAX ( Calendar Table[Year] ) ) - 1&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This DAX pattern can be used for&amp;nbsp;&lt;SPAN&gt;last year, this year YTD, last year YTD, you'll just need to change the filter condictions in the CALCULATE( ), for YTD you will also need to set a year start date in a variable, like below:&lt;/SPAN&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;VAR _now = NOW()
VAR _year_start = DATE( YEAR( _now ), MONTH( _now ), 01 )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The conditions for YTD would be something along the lines of:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CALCULATE ( _current, Table[Order Date] &amp;gt;= _year_start )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I believe I have given you everything you need, so please, if this helps accept as the solution.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2024 10:24:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113328#M163248</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-08-22T10:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: need help with a dax measure based aan date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113366#M163249</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you try below measures,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Current_Year_Month_Ordered = Count[Person]&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Previous_Year_Month_ordered = Var _Year = Selectedvalue(Calender[Year]) -1&lt;/P&gt;&lt;P&gt;Return&lt;/P&gt;&lt;P&gt;Calculate([Current_Year_Month_Ordered],calender[year] = _Year)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;let me know if this works for you. if you still need support then it would helpful if you share pbix file with sample data and expected output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please feel free mark it as accepted solution, if it works for you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2024 11:03:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113366#M163249</guid>
      <dc:creator>Ankur04</dc:creator>
      <dc:date>2024-08-22T11:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: need help with a dax measure based aan date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113451#M163256</link>
      <description>&lt;P&gt;this gives me the wrong answer&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;it mnust be something like this :&lt;BR /&gt;PersonenInBeideJaren =&lt;BR /&gt;VAR PersonenDezeMaand =&lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;DISTINCT(Orders[OrderBy]),&lt;BR /&gt;YEAR(Orders[OrderDate]) = SELECTEDVALUE(DateTable[Year]),&lt;BR /&gt;MONTH(Orders[OrderDate]) = SELECTEDVALUE(DateTable[Month])&lt;BR /&gt;)&lt;BR /&gt;VAR PersonenVorigJaar =&lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;DISTINCT(Orders[OrderBy]),&lt;BR /&gt;YEAR(Orders[OrderDate]) = SELECTEDVALUE(DateTable[Year]) - 1,&lt;BR /&gt;MONTH(Orders[OrderDate]) = SELECTEDVALUE(DateTable[Month])&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;COUNTROWS(&lt;BR /&gt;INTERSECT(PersonenDezeMaand, PersonenVorigJaar)&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2024 12:19:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113451#M163256</guid>
      <dc:creator>Krijgersss</dc:creator>
      <dc:date>2024-08-22T12:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: need help with a dax measure based aan date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113458#M163257</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="650918" data-lia-user-login="Krijgersss" class="lia-mention lia-mention-user"&gt;Krijgersss&lt;/a&gt;&amp;nbsp;- if you're going to use that, rather than the solution I have suggested, then you'll need to add REMOVEFILTERS(&amp;nbsp;&lt;SPAN&gt;Orders[OrderDate] ) as the first filter to your&amp;nbsp;PersonenVorigJaar variable.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;VAR PersonenVorigJaar =
CALCULATETABLE(
DISTINCT(Orders[OrderBy]),
REMOVEFILTERS( Orders[OrderDate] ),
YEAR(Orders[OrderDate]) = SELECTEDVALUE(DateTable[Year]) - 1,
MONTH(Orders[OrderDate]) = SELECTEDVALUE(DateTable[Month])
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 22 Aug 2024 12:24:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113458#M163257</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-08-22T12:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: need help with a dax measure based aan date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113470#M163259</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;good to know that you have figured out the solution. Not sure why your making it complex &lt;SPAN&gt;unnecessarily.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;as per the problem scenario which stated all the solution proposed by community members should work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2024 12:35:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113470#M163259</guid>
      <dc:creator>Ankur04</dc:creator>
      <dc:date>2024-08-22T12:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: need help with a dax measure based aan date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113482#M163260</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;this formule returns me blanks so it also doesnt work&lt;BR /&gt;&lt;BR /&gt;PersonenInBeideJaren =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;PersonenDezeMaand&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATETABLE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DISTINCT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;RestApiSalesInvoices&lt;/SPAN&gt;&lt;SPAN&gt;[ordered_by]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;YEAR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;RestApiSalesInvoices&lt;/SPAN&gt;&lt;SPAN&gt;[order_date]&lt;/SPAN&gt;&lt;SPAN&gt;) = &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DateDimensions&lt;/SPAN&gt;&lt;SPAN&gt;[Jaar]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;MONTH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;RestApiSalesInvoices&lt;/SPAN&gt;&lt;SPAN&gt;[order_date]&lt;/SPAN&gt;&lt;SPAN&gt;) = &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DateDimensions&lt;/SPAN&gt;&lt;SPAN&gt;[MaandNr]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;PersonenVorigJaar&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATETABLE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DISTINCT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;RestApiSalesInvoices&lt;/SPAN&gt;&lt;SPAN&gt;[ordered_by]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;REMOVEFILTERS&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;RestApiSalesInvoices&lt;/SPAN&gt;&lt;SPAN&gt;[order_date]&lt;/SPAN&gt;&lt;SPAN&gt; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;YEAR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;RestApiSalesInvoices&lt;/SPAN&gt;&lt;SPAN&gt;[order_date]&lt;/SPAN&gt;&lt;SPAN&gt;) = &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DateDimensions&lt;/SPAN&gt;&lt;SPAN&gt;[Jaar]&lt;/SPAN&gt;&lt;SPAN&gt;) - &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;MONTH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;RestApiSalesInvoices&lt;/SPAN&gt;&lt;SPAN&gt;[order_date]&lt;/SPAN&gt;&lt;SPAN&gt;) = &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DateDimensions&lt;/SPAN&gt;&lt;SPAN&gt;[MaandNr]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&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;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;INTERSECT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;PersonenDezeMaand&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;PersonenVorigJaar&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 22 Aug 2024 12:44:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113482#M163260</guid>
      <dc:creator>Krijgersss</dc:creator>
      <dc:date>2024-08-22T12:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: need help with a dax measure based aan date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113768#M163269</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="650918" data-lia-user-login="Krijgersss" class="lia-mention lia-mention-user"&gt;Krijgersss&lt;/a&gt;&amp;nbsp;- Then I will point you to my earlier suggestion, which you have ignored.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2024 15:03:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-with-a-dax-measure-based-aan-date/m-p/4113768#M163269</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-08-22T15:03:54Z</dc:date>
    </item>
  </channel>
</rss>

