<?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: ISINSCOPE issue in matrix in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-issue-in-matrix/m-p/2543836#M71737</link>
    <description>&lt;P&gt;Thank you for your response ribisht17. Unfortunately it didn't work. When the ISINSCOPE() is false, it shows only the total and blank for both the parent and related case.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 27 May 2022 12:23:30 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-05-27T12:23:30Z</dc:date>
    <item>
      <title>ISINSCOPE issue in matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-issue-in-matrix/m-p/2542492#M71666</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have one very simple measure that I have followed in other posts. With this measure, I want to remove the count for the 2nd hierarchy.&amp;nbsp;I would like to count the number of related case for a parent case and show this only on the first hierarchy, which is the parent case. Currently, the measure only eliminates the total. I've read other posts and possible solution but nothing is working, not quite sure why. Thanks in advance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data:&amp;nbsp;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 01:10:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-issue-in-matrix/m-p/2542492#M71666</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-05-27T01:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: ISINSCOPE issue in matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-issue-in-matrix/m-p/2542667#M71672</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please use&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Related Case =
IF (
    NOT ISINSCOPE ( Query1[Related Case Number] ),
    COUNT ( Query1[Parent Case Number] )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 27 May 2022 02:54:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-issue-in-matrix/m-p/2542667#M71672</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-05-27T02:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: ISINSCOPE issue in matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-issue-in-matrix/m-p/2542804#M71682</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Regional Countries Count Sol =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;ISINSCOPE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Orders[Country]&lt;/SPAN&gt;&lt;SPAN&gt;)=&lt;/SPAN&gt;&lt;SPAN&gt;FALSE&lt;/SPAN&gt;&lt;SPAN&gt;(),&lt;/SPAN&gt;&lt;SPAN&gt;DISTINCTCOUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Orders[Country]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;BLANK&lt;/SPAN&gt;&lt;SPAN&gt;())&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;LOGIC&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&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;P&gt;Please take care of the hierarchy you are using in the calculation because [Parent Case Number] will be true in both the cases&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 27 May 2022 05:32:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-issue-in-matrix/m-p/2542804#M71682</guid>
      <dc:creator>ribisht17</dc:creator>
      <dc:date>2022-05-27T05:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: ISINSCOPE issue in matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-issue-in-matrix/m-p/2543836#M71737</link>
      <description>&lt;P&gt;Thank you for your response ribisht17. Unfortunately it didn't work. When the ISINSCOPE() is false, it shows only the total and blank for both the parent and related case.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 12:23:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-issue-in-matrix/m-p/2543836#M71737</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-05-27T12:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: ISINSCOPE issue in matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-issue-in-matrix/m-p/2543840#M71738</link>
      <description>&lt;P&gt;This works perfectly. Thanks a lot tamerj1!&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 12:24:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-issue-in-matrix/m-p/2543840#M71738</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-05-27T12:24:19Z</dc:date>
    </item>
  </channel>
</rss>

