<?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: Filtering a measure with a measure isn't working in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104280#M109295</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="520150" data-lia-user-login="andhiii079845" class="lia-mention lia-mention-user"&gt;andhiii079845&lt;/a&gt;,&amp;nbsp;you're right, I did copy it wrong. Yours also worked after I changed "&lt;SPAN&gt;Var&amp;nbsp;__t = NextMaintPoint" to "Var&amp;nbsp;__t = [NextDatePoint]"&lt;/SPAN&gt;&amp;nbsp; Thank-you for you help, I really appreciate it!&lt;/P&gt;</description>
    <pubDate>Tue, 28 Feb 2023 16:36:25 GMT</pubDate>
    <dc:creator>peck3472</dc:creator>
    <dc:date>2023-02-28T16:36:25Z</dc:date>
    <item>
      <title>Filtering a measure with a measure isn't working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104136#M109264</link>
      <description>&lt;P&gt;I have a table of data that contains a column for date and a column for maintenance hours.&amp;nbsp; I'm trying to use a measure to get the point closest to today's date that is either today or after today.&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;I use the following to get the date of the next point (this is working fine):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;NextDatePoint = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'report_maint_forecast'&lt;/SPAN&gt;&lt;SPAN&gt;[point_date]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;report_maint_forecast&lt;/SPAN&gt;&lt;SPAN&gt;[point_date]&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;TODAY&lt;/SPAN&gt;&lt;SPAN&gt;() &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;report_maint_forecast&lt;/SPAN&gt;&lt;SPAN&gt;[point_type]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"Jan_2023_Baseline"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;SPAN&gt;report_maint_forecast&lt;/SPAN&gt;&lt;SPAN&gt;[region]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"Payette"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;Next I use the previous measure (the date) within my new measure to try to get the maintenance for that date:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;NextMaintPoint = &lt;/SPAN&gt;&lt;SPAN&gt;calculate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;max&lt;/SPAN&gt;&lt;SPAN&gt;(report_maint_forecast[point_remaining_maint]),&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;filter&lt;/SPAN&gt;&lt;SPAN&gt;(report_maint_forecast,report_maint_forecast[point_date]=&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;[NextDatePoint] &amp;amp;&amp;amp; report_maint_forecast[point_type]=&lt;/SPAN&gt;&lt;SPAN&gt;"Jan_2023_Baseline"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;amp;&amp;amp;report_maint_forecast[region]=&lt;/SPAN&gt;&lt;SPAN&gt;"Payette"&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This isn't working, it returns a value but it's the incorrect value.&amp;nbsp; When I change my measure from MAX to COUNT, like below, it shows I'm getting 11 records, there's only 1 record in the data that matches that filter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;NextMaintPoint = &lt;/SPAN&gt;&lt;SPAN&gt;calculate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;FONT color="#FF00FF"&gt;count&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;(report_maint_forecast[point_remaining_maint]),&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;filter&lt;/SPAN&gt;&lt;SPAN&gt;(report_maint_forecast,report_maint_forecast[point_date]=&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;[NextDatePoint] &amp;amp;&amp;amp; report_maint_forecast[point_type]=&lt;/SPAN&gt;&lt;SPAN&gt;"Jan_2023_Baseline"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;amp;&amp;amp;report_maint_forecast[region]=&lt;/SPAN&gt;&lt;SPAN&gt;"Payette"&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To further troubleshoot I try defining a table, that just returns the filter portion.&amp;nbsp; It's returning 11 rows, but the date doesn't match [NextDatePoint], it's as if it's filtering using the data before the MIN was applied to the &lt;SPAN&gt;NextDatePoint measure&lt;/SPAN&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;To further troubleshoot I tried doing everything within one measure as follows, this works:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;AllinOneCalc =&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;var NDPoint = CALCULATE(MIN('report_maint_forecast'[point_date]), report_maint_forecast[point_date]&amp;gt;=TODAY() &amp;amp;&amp;amp; report_maint_forecast[point_type]="Jan_2023_Baseline"&amp;amp;&amp;amp;report_maint_forecast[region]="Payette")&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;RETURN&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;calculate(count(report_maint_forecast[point_remaining_maint]), &amp;nbsp;filter(report_maint_forecast,report_maint_forecast[point_date]= NDPoint&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&amp;amp;&amp;amp; report_maint_forecast[point_type]="Jan_2023_Baseline"&amp;amp;&amp;amp;report_maint_forecast[region]="Payette"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is appreciated!&amp;nbsp; Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 16:01:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104136#M109264</guid>
      <dc:creator>peck3472</dc:creator>
      <dc:date>2023-02-28T16:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering a measure with a measure isn't working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104160#M109269</link>
      <description>&lt;P&gt;Do you try to check in what is in "&lt;SPAN&gt;NextDatePoint"&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;NextMaintPoint =&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;calculate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;max&lt;/SPAN&gt;&lt;SPAN&gt;(report_maint_forecast[point_remaining_maint]),&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;filter&lt;/SPAN&gt;&lt;SPAN&gt;(report_maint_forecast,report_maint_forecast[point_date]=&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[NextDatePoint] &amp;amp;&amp;amp; report_maint_forecast[point_type]=&lt;/SPAN&gt;&lt;SPAN&gt;"Jan_2023_Baseline"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;amp;&amp;amp;report_maint_forecast[region]=&lt;/SPAN&gt;&lt;SPAN&gt;"Payette"&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;like this. Try to use also VAR in our regular measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Test =&lt;BR /&gt;Var __t =&amp;nbsp;&lt;SPAN&gt;NextMaintPoint&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;Return __t&amp;nbsp;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 16:08:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104160#M109269</guid>
      <dc:creator>andhiii079845</dc:creator>
      <dc:date>2023-02-28T16:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering a measure with a measure isn't working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104186#M109273</link>
      <description>&lt;P&gt;Hi.&amp;nbsp; Thanks for your help.&amp;nbsp; Yes, I checked the value in NextDatePoint and it is correct.&amp;nbsp;&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;I also tried using Var, and that didn't seem to work either:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;NextDatePoint = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Var&lt;/SPAN&gt;&lt;SPAN&gt; _T = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt;('report_maint_forecast'[point_date]), report_maint_forecast[point_date]&amp;gt;=&lt;/SPAN&gt;&lt;SPAN&gt;TODAY&lt;/SPAN&gt;&lt;SPAN&gt;() &amp;amp;&amp;amp; report_maint_forecast[point_type]=&lt;/SPAN&gt;&lt;SPAN&gt;"Jan_2023_Baseline"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;amp;&amp;amp;report_maint_forecast[region]=&lt;/SPAN&gt;&lt;SPAN&gt;"Payette"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Return&lt;/SPAN&gt;&lt;SPAN&gt; _T&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 16:16:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104186#M109273</guid>
      <dc:creator>peck3472</dc:creator>
      <dc:date>2023-02-28T16:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering a measure with a measure isn't working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104202#M109274</link>
      <description>&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;I mean like this:&amp;nbsp;&lt;BR /&gt;NextMaintPoint =&amp;nbsp;&lt;BR /&gt;Var&amp;nbsp;__t = NextMaintPoint&lt;BR /&gt;RETURN &lt;/SPAN&gt;&lt;SPAN&gt;calculate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;max&lt;/SPAN&gt;&lt;SPAN&gt;(report_maint_forecast[point_remaining_maint]),&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;filter&lt;/SPAN&gt;&lt;SPAN&gt;(report_maint_forecast,report_maint_forecast[point_date]=&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;&lt;STRONG&gt;__t&lt;/STRONG&gt; &amp;amp;&amp;amp; report_maint_forecast[point_type]=&lt;/SPAN&gt;&lt;SPAN&gt;"Jan_2023_Baseline"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;amp;&amp;amp;report_maint_forecast[region]=&lt;/SPAN&gt;&lt;SPAN&gt;"Payette"&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 28 Feb 2023 16:30:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104202#M109274</guid>
      <dc:creator>andhiii079845</dc:creator>
      <dc:date>2023-02-28T16:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering a measure with a measure isn't working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104214#M109279</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="521502" data-lia-user-login="peck3472" class="lia-mention lia-mention-user"&gt;peck3472&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please try&lt;/P&gt;
&lt;P&gt;NextMaintPoint =&lt;BR /&gt;VAR NextDatePoint = [NextDatePoint]&lt;BR /&gt;RETURN&lt;BR /&gt;CALCULATE (&lt;BR /&gt;MAX ( report_maint_forecast[point_remaining_maint] ),&lt;BR /&gt;FILTER (&lt;BR /&gt;report_maint_forecast,&lt;BR /&gt;report_maint_forecast[point_date] = NextDatePoint&lt;BR /&gt;&amp;amp;&amp;amp; report_maint_forecast[point_type] = "Jan_2023_Baseline"&lt;BR /&gt;&amp;amp;&amp;amp; report_maint_forecast[region] = "Payette"&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 16:23:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104214#M109279</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-28T16:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering a measure with a measure isn't working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104219#M109280</link>
      <description>&lt;P&gt;Just tried that, it's also not returning correctly.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;NextMaintPoint = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;Var&lt;/SPAN&gt; &lt;SPAN&gt;_T&lt;/SPAN&gt;&lt;SPAN&gt;= &lt;/SPAN&gt;&lt;SPAN&gt;calculate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;count&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;report_maint_forecast&lt;/SPAN&gt;&lt;SPAN&gt;[point_remaining_maint]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;filter&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;report_maint_forecast&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;report_maint_forecast&lt;/SPAN&gt;&lt;SPAN&gt;[point_date]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;[NextDatePoint]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;report_maint_forecast&lt;/SPAN&gt;&lt;SPAN&gt;[point_type]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"Jan_2023_Baseline"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;SPAN&gt;report_maint_forecast&lt;/SPAN&gt;&lt;SPAN&gt;[region]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"Payette"&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Return&lt;/SPAN&gt; &lt;SPAN&gt;_T&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 28 Feb 2023 16:24:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104219#M109280</guid>
      <dc:creator>peck3472</dc:creator>
      <dc:date>2023-02-28T16:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering a measure with a measure isn't working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104230#M109284</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;, that worked!&amp;nbsp; Do you think that is how I should do it anytime I use a measure within a measure?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 16:26:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104230#M109284</guid>
      <dc:creator>peck3472</dc:creator>
      <dc:date>2023-02-28T16:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering a measure with a measure isn't working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104250#M109286</link>
      <description>&lt;P&gt;You copy my measure wrong, but know you have the solution &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 16:30:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104250#M109286</guid>
      <dc:creator>andhiii079845</dc:creator>
      <dc:date>2023-02-28T16:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering a measure with a measure isn't working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104251#M109287</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="521502" data-lia-user-login="peck3472" class="lia-mention lia-mention-user"&gt;peck3472&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You need to be extremely careful when referring to a measure inside an iteration function (FILTER in your case) as context transition happens, therefore, the measure is reevaluated within each iteration converting the row context into filter context. In other words it is evaluated differently for each row.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 16:31:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104251#M109287</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-28T16:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering a measure with a measure isn't working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104280#M109295</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="520150" data-lia-user-login="andhiii079845" class="lia-mention lia-mention-user"&gt;andhiii079845&lt;/a&gt;,&amp;nbsp;you're right, I did copy it wrong. Yours also worked after I changed "&lt;SPAN&gt;Var&amp;nbsp;__t = NextMaintPoint" to "Var&amp;nbsp;__t = [NextDatePoint]"&lt;/SPAN&gt;&amp;nbsp; Thank-you for you help, I really appreciate it!&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 16:36:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104280#M109295</guid>
      <dc:creator>peck3472</dc:creator>
      <dc:date>2023-02-28T16:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering a measure with a measure isn't working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104282#M109296</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;!&amp;nbsp; I really appreciate the help!&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 16:37:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-a-measure-with-a-measure-isn-t-working/m-p/3104282#M109296</guid>
      <dc:creator>peck3472</dc:creator>
      <dc:date>2023-02-28T16:37:28Z</dc:date>
    </item>
  </channel>
</rss>

