<?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: Hide rows with blank values for measure depending on slicer selection in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hide-rows-with-blank-values-for-measure-depending-on-slicer/m-p/1567312#M31194</link>
    <description>&lt;P&gt;My apologies, but it turns out I was looking at the wrong page (page 1), which lead me to wrongfully conclude that your solution worked. On page 2, the problem still persists with the new measure definitions you provided (the blank value for measure 'Waiting' is still displayed when I select 'Running' in the slicer, and the blank value for measure 'Running' is still displayed when I select 'Waiting' in the slicer, which I don't want).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm looking forward to any other solutions!&lt;/P&gt;</description>
    <pubDate>Wed, 23 Dec 2020 12:53:05 GMT</pubDate>
    <dc:creator>RobinNeven</dc:creator>
    <dc:date>2020-12-23T12:53:05Z</dc:date>
    <item>
      <title>Hide rows with blank values for measure depending on slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hide-rows-with-blank-values-for-measure-depending-on-slicer/m-p/1562736#M31032</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In &lt;A title="Planning Report Robin" href="https://1drv.ms/u/s!AtuJeT8mCNE4goNu-sssfvrWhemHsQ?e=aRnrsi" target="_blank" rel="noopener"&gt;this pbix&lt;/A&gt; (follow link) there are two pages: page 1 holds 3 tables and one slicer, all populated through the 'fact table' called Planning, and showing the desired behavior. Page 2 holds the exact same content, but with the 'Group' column being replaced by GroupID, which holds the same values but coming from a separate dimension called 'GroupDimension'. In the latter case, all of a sudden the table on the far right does not show the desired behavior anymore, but instead also shows rows with blank values for the status selected in the 'Status' slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I get the far right table on Page 2 to display the same behavior as on Page 1? I think it is a DAX issue so I tried playing around with ALLEXCEPT, ALLSELECTED and HASONEVALUE in the 'Waiting' and 'Running' measures, but to no avail. HASONEVALUE got me half-way, because it showed the correct thing when a value is selected in the slicer, but then it doesn't show everything I want it to show when nothing/all from the slicer is selected (I don't know why because there is not one value selected then but two, so it shouldn't return anything in my opinion but okay).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much in advance for any help!&lt;/P&gt;</description>
      <pubDate>Mon, 21 Dec 2020 13:00:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hide-rows-with-blank-values-for-measure-depending-on-slicer/m-p/1562736#M31032</guid>
      <dc:creator>RobinNeven</dc:creator>
      <dc:date>2020-12-21T13:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: Hide rows with blank values for measure depending on slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hide-rows-with-blank-values-for-measure-depending-on-slicer/m-p/1563399#M31061</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="276718" data-lia-user-login="RobinNeven" class="lia-mention lia-mention-user"&gt;RobinNeven&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Update your measures&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Running = 
VAR CountRunning = CALCULATE(COUNTROWS(Planning), Planning[Status] = "Running")
RETURN
IF(COUNTROWS(Planning) &amp;gt; 0, CountRunning)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Waiting = 
VAR CountWaiting = CALCULATE(COUNTROWS(Planning), Planning[Status] = "Waiting")
RETURN
IF(COUNTROWS(Planning) &amp;gt; 0, CountWaiting)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Please mark the question solved when done and consider &lt;FONT color="#FF9900"&gt;giving a thumbs up if posts are helpful.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;Contact me privately for support with any larger-scale BI needs, tutoring, etc.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Cheers&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;</description>
      <pubDate>Mon, 21 Dec 2020 19:36:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hide-rows-with-blank-values-for-measure-depending-on-slicer/m-p/1563399#M31061</guid>
      <dc:creator>AlB</dc:creator>
      <dc:date>2020-12-21T19:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: Hide rows with blank values for measure depending on slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hide-rows-with-blank-values-for-measure-depending-on-slicer/m-p/1565216#M31123</link>
      <description>&lt;P&gt;Wow, such a simple solution for something I've been struggling so long with! I was way overthinking it apparently, thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 22 Dec 2020 12:34:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hide-rows-with-blank-values-for-measure-depending-on-slicer/m-p/1565216#M31123</guid>
      <dc:creator>RobinNeven</dc:creator>
      <dc:date>2020-12-22T12:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Hide rows with blank values for measure depending on slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hide-rows-with-blank-values-for-measure-depending-on-slicer/m-p/1567312#M31194</link>
      <description>&lt;P&gt;My apologies, but it turns out I was looking at the wrong page (page 1), which lead me to wrongfully conclude that your solution worked. On page 2, the problem still persists with the new measure definitions you provided (the blank value for measure 'Waiting' is still displayed when I select 'Running' in the slicer, and the blank value for measure 'Running' is still displayed when I select 'Waiting' in the slicer, which I don't want).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm looking forward to any other solutions!&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 12:53:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hide-rows-with-blank-values-for-measure-depending-on-slicer/m-p/1567312#M31194</guid>
      <dc:creator>RobinNeven</dc:creator>
      <dc:date>2020-12-23T12:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Hide rows with blank values for measure depending on slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hide-rows-with-blank-values-for-measure-depending-on-slicer/m-p/1567324#M31195</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="276718" data-lia-user-login="RobinNeven" class="lia-mention lia-mention-user"&gt;RobinNeven&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure what you did. I get exactly the same results on page 1 and page 2.&lt;/P&gt;
&lt;P&gt;See it all at work in the attached file.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Please mark the question solved when done and consider &lt;FONT color="#FF9900"&gt;giving a thumbs up if posts are helpful.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;Contact me privately for support with any larger-scale BI needs, tutoring, etc.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Cheers&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 12:59:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hide-rows-with-blank-values-for-measure-depending-on-slicer/m-p/1567324#M31195</guid>
      <dc:creator>AlB</dc:creator>
      <dc:date>2020-12-23T12:59:49Z</dc:date>
    </item>
  </channel>
</rss>

