<?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: Filter Measure Not Working Properly in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Filter-Measure-Not-Working-Properly/m-p/2334910#M34360</link>
    <description>&lt;P&gt;I deleted the relationship between my date table and my Append CRM Data table and the my measure filters when a year is selected. I think this is related to an overly complex data model.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I'm still not sure why my matrix is returning values slightly greater than my max threshold value in my range slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nbs33_1-1644696478779.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/668951i7E5045941D1496AC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nbs33_1-1644696478779.png" alt="nbs33_1-1644696478779.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 12 Feb 2022 20:10:12 GMT</pubDate>
    <dc:creator>nbs33</dc:creator>
    <dc:date>2022-02-12T20:10:12Z</dc:date>
    <item>
      <title>Filter Measure Not Working Properly</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Filter-Measure-Not-Working-Properly/m-p/2334892#M34359</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have created a measure that uses a parameter to filter a matrix. &lt;A href="https://community.powerbi.com/t5/DAX-Commands-and-Tips/Filtering-Matrix-Hierarchy-by-Parent-s-Measure-Value/m-p/2320115#M57934&amp;nbsp;" target="_self"&gt;Here&lt;/A&gt; is the orginal post were I got the help to create this measure.&lt;/P&gt;&lt;P&gt;There is also a simplified model in the post that functions perfectly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I apply this measure to my model it does not work and I can't seem to figure out why. Without a year selected it will filter but not correctly. As can be see in the image below, the slicer max value is 64.09% but the matrix shows values of 65.19%. Even more strange when a year is selected it doesn't filter at all.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I thought it might be related to the blank in my year slicer. I tried to remove this blank by removeing all blank dates in tables related to my date table but the blank remains. Other than that I am not sure what to do.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am truely stuck. My hypothsis at this point is that there is some complexity in my model that is causing this issue. Any ideas are greatly appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;No Year Selected:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Year Selected:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="nbs33_0-1644694225933.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/668947iDD99BCBCE0F3870D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nbs33_0-1644694225933.png" alt="nbs33_0-1644694225933.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nbs33_1-1644694287060.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/668948iB1AFAD446055C49B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nbs33_1-1644694287060.png" alt="nbs33_1-1644694287060.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Filter Measure:&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;InSelectedRange = 
VAR Level1Growth =
    CALCULATE (
        [YTD vs PYTD Revenue %],
        ALLSELECTED (),
        VALUES ( Companies[Level 1] ),
        VALUES(  Dates[Year] )
)
VAR RangeBuckets =
    FILTER (
        Range,
        Range[Range] &amp;lt;= Level1Growth
            &amp;amp;&amp;amp; ( Range[Range] = 1
            || Range[Range] + 0.1 &amp;gt; Level1Growth )
        )
RETURN
    IF ( ISEMPTY ( RangeBuckets ), 0, 1 )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Feb 2022 19:39:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Filter-Measure-Not-Working-Properly/m-p/2334892#M34359</guid>
      <dc:creator>nbs33</dc:creator>
      <dc:date>2022-02-12T19:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Measure Not Working Properly</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Filter-Measure-Not-Working-Properly/m-p/2334910#M34360</link>
      <description>&lt;P&gt;I deleted the relationship between my date table and my Append CRM Data table and the my measure filters when a year is selected. I think this is related to an overly complex data model.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I'm still not sure why my matrix is returning values slightly greater than my max threshold value in my range slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nbs33_1-1644696478779.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/668951i7E5045941D1496AC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nbs33_1-1644696478779.png" alt="nbs33_1-1644696478779.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Feb 2022 20:10:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Filter-Measure-Not-Working-Properly/m-p/2334910#M34360</guid>
      <dc:creator>nbs33</dc:creator>
      <dc:date>2022-02-12T20:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Measure Not Working Properly</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Filter-Measure-Not-Working-Properly/m-p/2338319#M34403</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/315872"&gt;@nbs33&lt;/a&gt;&amp;nbsp;，&lt;/P&gt;
&lt;P&gt;Could you please share your sample pbix file with latest version with us in order to make troubleshooting and provide you a suitable solution? Which field be used on the Range Slicer? Or it is from &lt;A href="https://docs.microsoft.com/en-us/power-bi/transform-model/desktop-what-if" target="_self"&gt;what-if parameter&lt;/A&gt;?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_1-1644893485301.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/669842iDF3608C3BE2BDF4B/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_1-1644893485301.png" alt="yingyinr_1-1644893485301.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 02:54:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Filter-Measure-Not-Working-Properly/m-p/2338319#M34403</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-15T02:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Measure Not Working Properly</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Filter-Measure-Not-Working-Properly/m-p/2339838#M34412</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;@Anonymous&lt;/a&gt;, I just figure it out. my measure was computing the range value in 10% increments which is why I was getting strange values. I just changed the slicer to a drop down so the selection will bucket the results in these 10% increments and make more sense to the user.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 14:34:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Filter-Measure-Not-Working-Properly/m-p/2339838#M34412</guid>
      <dc:creator>nbs33</dc:creator>
      <dc:date>2022-02-15T14:34:47Z</dc:date>
    </item>
  </channel>
</rss>

