<?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: Dynamic Header that works when using &amp;quot;go to the next level of the hierarchy&amp;quot; in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Header-that-works-when-using-quot-go-to-the-next-level/m-p/3320469#M124262</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="403972" data-lia-user-login="v-jianboli-msft" class="lia-mention lia-mention-user"&gt;v-jianboli-msft&lt;/a&gt;&amp;nbsp;thank you for the response! Your suggestion works when doing a single drill down. I'm hoping for a solution that works when using either the double arrows or expand arrows. Any thoughts on if that's possible? I'm starting to think it's not, because expanding doesn't filter anything...&lt;/P&gt;</description>
    <pubDate>Fri, 07 Jul 2023 13:35:28 GMT</pubDate>
    <dc:creator>jlaroo33</dc:creator>
    <dc:date>2023-07-07T13:35:28Z</dc:date>
    <item>
      <title>Dynamic Header that works when using "go to the next level of the hierarchy"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Header-that-works-when-using-quot-go-to-the-next-level/m-p/3317178#M124127</link>
      <description>&lt;P&gt;I'm trying to create a dynamic title that makes sense for our manager hierarchy when using "go to the next level of the hierarchy". I have a manager hierarchy set up like this, that goes down to L11.&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like the titles to reflect the leader one level above the level being viewed on the visual, starting with a generic level like "All Company". So it would look like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;View of all company&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Drilled one level down, now seeing "CEO's Direct Reports"&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;Drilled into COO(1), now seeing "COO(1)'s Direct Reports"&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this possible? Or is there another way I can clearly show my users where they are in the hierarchy? Our structure can be very confusing...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2023 23:14:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Header-that-works-when-using-quot-go-to-the-next-level/m-p/3317178#M124127</guid>
      <dc:creator>jlaroo33</dc:creator>
      <dc:date>2023-07-05T23:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Header that works when using "go to the next level of the hierarchy"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Header-that-works-when-using-quot-go-to-the-next-level/m-p/3319445#M124213</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="377073" data-lia-user-login="jlaroo33" class="lia-mention lia-mention-user"&gt;jlaroo33&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;DynamicTitle = 
SWITCH(TRUE(),
ISFILTERED('Table'[L0])&amp;amp;&amp;amp;ISFILTERED('Table'[L1])&amp;amp;&amp;amp;ISFILTERED('Table'[L2]),CONCATENATEX(DISTINCT('Table'[L2]),[L2],","),
ISFILTERED('Table'[L0])&amp;amp;&amp;amp;ISFILTERED('Table'[L1]),CONCATENATEX(DISTINCT('Table'[L1]),[L1],","),
ISFILTERED('Table'[L0]),CONCATENATEX(DISTINCT('Table'[L0]),[L0],","),
"All Company") &amp;amp; " Direct Report"&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Final output:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Jianbo Li&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 01:55:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Header-that-works-when-using-quot-go-to-the-next-level/m-p/3319445#M124213</guid>
      <dc:creator>v-jianboli-msft</dc:creator>
      <dc:date>2023-07-07T01:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Header that works when using "go to the next level of the hierarchy"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Header-that-works-when-using-quot-go-to-the-next-level/m-p/3320469#M124262</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="403972" data-lia-user-login="v-jianboli-msft" class="lia-mention lia-mention-user"&gt;v-jianboli-msft&lt;/a&gt;&amp;nbsp;thank you for the response! Your suggestion works when doing a single drill down. I'm hoping for a solution that works when using either the double arrows or expand arrows. Any thoughts on if that's possible? I'm starting to think it's not, because expanding doesn't filter anything...&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 13:35:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Header-that-works-when-using-quot-go-to-the-next-level/m-p/3320469#M124262</guid>
      <dc:creator>jlaroo33</dc:creator>
      <dc:date>2023-07-07T13:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Header that works when using "go to the next level of the hierarchy"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Header-that-works-when-using-quot-go-to-the-next-level/m-p/3322240#M124381</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="377073" data-lia-user-login="jlaroo33" class="lia-mention lia-mention-user"&gt;jlaroo33&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to my knowledge, your requirement may not be realized currently.&lt;/P&gt;
&lt;P&gt;If you want this in&amp;nbsp; Power BI, let the power bi community to know this things and give your votes at&amp;nbsp;&lt;A href="https://ideas.fabric.microsoft.com/" target="_blank"&gt;Fabric Ideas&lt;/A&gt;, you may vote the idea and comment&amp;nbsp; to improve this feature. It is a place for customers provide feedback about Microsoft Fabric products . What’s more, if a feedback is high voted there by other customers, it will be promising that Microsoft Product Team will take it into consideration when designing the next version in the future.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Jianbo Li&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2023 01:48:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Header-that-works-when-using-quot-go-to-the-next-level/m-p/3322240#M124381</guid>
      <dc:creator>v-jianboli-msft</dc:creator>
      <dc:date>2023-07-10T01:48:03Z</dc:date>
    </item>
  </channel>
</rss>

