<?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: undefined in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/undefined/m-p/4156859#M55349</link>
    <description>&lt;P&gt;How are you planning to enforce single selection in a hierarchy 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="lbendlin_0-1726665128720.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1169413i9A020E6BB20CE501/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lbendlin_0-1726665128720.png" alt="lbendlin_0-1726665128720.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>Wed, 18 Sep 2024 13:15:56 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2024-09-18T13:15:56Z</dc:date>
    <item>
      <title>undefined</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/undefined/m-p/4156007#M55338</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am facing issue with dynamic title&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an 3 level slicers with different leader levels&lt;/P&gt;&lt;P&gt;If i select leader A in level 1, title should show "dashboard for A"&lt;/P&gt;&lt;P&gt;Similarly if i select another leader X who is reporting to leader A under level 2, title should now show me " dashboard for X"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically title should change values dynamically based on latest selection of slicer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used isfilter and selectedvalue in the measure but even though I selected someone on level2 it still gives me level 1 selection in the title&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To get the the level 2 selection appear on the title I need to unselct all in level 1 which is not my need&lt;/P&gt;&lt;P&gt;Any help or suggestions pls&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2024 07:25:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/undefined/m-p/4156007#M55338</guid>
      <dc:creator>MonicaNaidu</dc:creator>
      <dc:date>2024-09-18T07:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: undefined</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/undefined/m-p/4156859#M55349</link>
      <description>&lt;P&gt;How are you planning to enforce single selection in a hierarchy 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="lbendlin_0-1726665128720.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1169413i9A020E6BB20CE501/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lbendlin_0-1726665128720.png" alt="lbendlin_0-1726665128720.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>Wed, 18 Sep 2024 13:15:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/undefined/m-p/4156859#M55349</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-18T13:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: undefined</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/undefined/m-p/4158537#M55372</link>
      <description>&lt;P&gt;Thanks for the reply from lbendlin&amp;nbsp;, please allow me to provide another insight:&amp;nbsp; &lt;BR /&gt;Hi&amp;nbsp; &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/807875"&gt;@MonicaNaidu&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I created some data:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyangliumsft_0-1726715713658.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1169785i9ED0A6DAF0D62EC4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vyangliumsft_0-1726715713658.png" alt="vyangliumsft_0-1726715713658.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. Create measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
IF(
    HASONEVALUE('Table'[leader level3]),"dashboard for"&amp;amp;" "&amp;amp;SELECTEDVALUE('Table'[leader level3]),
    IF(
        HASONEVALUE('Table'[leader level2]),"dashboard for"&amp;amp;" "&amp;amp;SELECTEDVALUE('Table'[leader level2]),
        IF(
            HASONEVALUE('Table'[leader level1]),"dashboard for"&amp;amp;" "&amp;amp;SELECTEDVALUE('Table'[leader level1]),"Title")))&lt;/LI-CODE&gt;
&lt;P&gt;2. Title – fx.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyangliumsft_1-1726715713660.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1169786i5E34303DC1833889/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vyangliumsft_1-1726715713660.png" alt="vyangliumsft_1-1726715713660.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyangliumsft_2-1726715757707.png" style="width: 253px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1169788iC9507605576D8A23/image-dimensions/253x157?v=v2" width="253" height="157" role="button" title="vyangliumsft_2-1726715757707.png" alt="vyangliumsft_2-1726715757707.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;3. Result:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyangliumsft_3-1726715767427.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1169790i845FFA45A6B3C5FA/image-size/large?v=v2&amp;amp;px=999" role="button" title="vyangliumsft_3-1726715767427.png" alt="vyangliumsft_3-1726715767427.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyangliumsft_4-1726715767429.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1169789iE8E30EA6737A603D/image-size/large?v=v2&amp;amp;px=999" role="button" title="vyangliumsft_4-1726715767429.png" alt="vyangliumsft_4-1726715767429.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyangliumsft_6-1726715891448.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1169796iECBA3927E224B574/image-size/large?v=v2&amp;amp;px=999" role="button" title="vyangliumsft_6-1726715891448.png" alt="vyangliumsft_6-1726715891448.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;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 03:18:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/undefined/m-p/4158537#M55372</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-09-19T03:18:29Z</dc:date>
    </item>
  </channel>
</rss>

