<?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 Query in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1468990#M27862</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="255456" data-lia-user-login="andybamber" class="lia-mention lia-mention-user"&gt;andybamber&lt;/a&gt; , is showing headcount target at this level Domain_Table[cc_domain] on Job level 3,4,5 it should show Headcount . Is this what you need ?&lt;/P&gt;
&lt;P&gt;See if this document can help : &lt;A href="https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/" target="_blank"&gt;https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;Can you share sample data and sample output in table format? &lt;/P&gt;</description>
    <pubDate>Mon, 02 Nov 2020 09:46:50 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2020-11-02T09:46:50Z</dc:date>
    <item>
      <title>ISINSCOPE Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1468815#M27850</link>
      <description>&lt;P&gt;Hello All&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a report, and have a headcount target at Domain level (this is the top level of 5). The report has a slicer which allows the user to view headcount at these various levels. I have a line chart which shows actual headcount over time... I also want to show headcount target but obviously only when the user is looking at the top Domain level. I thought if i created a measure below for the&amp;nbsp;&lt;SPAN&gt;headcount target, and used isinscope to determine the level selected it would show actual headcount target at the Domain level, and then when they move below that it would show the Headcount measure (which means the actual and budget would display the same on the visual)... however it doesnt, and however low the user goes in the hierarachy it also shows the domain headcount target&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Headcount_Budget_Wkly_Snap = SWITCH ( TRUE (), ISINSCOPE ( Domain_Table[cc_domain] ), [Headcount_Target], ISINSCOPE(OBS_MAPPING[obs_level3]), [Headcount], ISINSCOPE(OBS_MAPPING[obs_level4]), [Headcount],ISINSCOPE(OBS_MAPPING[obs_level5]), [Headcount] )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2020 08:27:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1468815#M27850</guid>
      <dc:creator>andybamber</dc:creator>
      <dc:date>2020-11-02T08:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: ISINSCOPE Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1468990#M27862</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="255456" data-lia-user-login="andybamber" class="lia-mention lia-mention-user"&gt;andybamber&lt;/a&gt; , is showing headcount target at this level Domain_Table[cc_domain] on Job level 3,4,5 it should show Headcount . Is this what you need ?&lt;/P&gt;
&lt;P&gt;See if this document can help : &lt;A href="https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/" target="_blank"&gt;https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;Can you share sample data and sample output in table format? &lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2020 09:46:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1468990#M27862</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-11-02T09:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: ISINSCOPE Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1469052#M27866</link>
      <description>ISINSCOPE need to be structured in a very specific way to work correctly. The most granular/detailed level must be first, then the second most granular... and so on.</description>
      <pubDate>Mon, 02 Nov 2020 10:11:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1469052#M27866</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-02T10:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: ISINSCOPE Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1469240#M27873</link>
      <description>&lt;P&gt;thanks&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;... i tried that and it still doesnt ... stupid question probably, but does the hierarchy have to be structured as a Hierarchy? at the moment i have the Domain level from 1 table and the other Obs_Levels are from a different table, although there are obviously relationships in place to join them all, otherwise the slicer wouldnt work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2020 11:32:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1469240#M27873</guid>
      <dc:creator>andybamber</dc:creator>
      <dc:date>2020-11-02T11:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: ISINSCOPE Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1469267#M27874</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp; you are correct, that is how i need it to work... I looked at that link you gave me and I dont seem to be able to make that work, also tried daxer's suggestion to order from most granular to least and that doesnt work either... ill try and put together a sample file for you to look at...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2020 11:40:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1469267#M27874</guid>
      <dc:creator>andybamber</dc:creator>
      <dc:date>2020-11-02T11:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: ISINSCOPE Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1469395#M27876</link>
      <description>Please have a look at this: &lt;A href="https://www.daxpatterns.com/hierarchies/" target="_blank"&gt;https://www.daxpatterns.com/hierarchies/&lt;/A&gt;</description>
      <pubDate>Mon, 02 Nov 2020 12:35:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1469395#M27876</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-02T12:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: ISINSCOPE Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1469446#M27880</link>
      <description>You can also read this: &lt;A href="https://www.sqlbi.com/articles/distinguishing-hasonevalue-from-isinscope/" target="_blank"&gt;https://www.sqlbi.com/articles/distinguishing-hasonevalue-from-isinscope/&lt;/A&gt;</description>
      <pubDate>Mon, 02 Nov 2020 12:53:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1469446#M27880</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-02T12:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: ISINSCOPE Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1471446#M27933</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp; so i realised why it wasnt working, the visual didnt contain the domain or obs levels, that said i was hoping it would be able to work based off selections from the filter slicer.... when i applied to a visual which had domain and obs, it worked as expected when i drill through... but i guess the question is whether you can do a similar thing based off slicer selections?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 10:00:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1471446#M27933</guid>
      <dc:creator>andybamber</dc:creator>
      <dc:date>2020-11-03T10:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: ISINSCOPE Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1471613#M27944</link>
      <description>Read this: &lt;A href="https://www.sqlbi.com/articles/distinguishing-hasonevalue-from-isinscope/" target="_blank"&gt;https://www.sqlbi.com/articles/distinguishing-hasonevalue-from-isinscope/&lt;/A&gt;</description>
      <pubDate>Tue, 03 Nov 2020 11:13:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ISINSCOPE-Query/m-p/1471613#M27944</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-03T11:13:26Z</dc:date>
    </item>
  </channel>
</rss>

