<?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: Need help with selectedvalue within a hierarchy slicer in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-selectedvalue-within-a-hierarchy-slicer/m-p/4652302#M178086</link>
    <description>&lt;P&gt;SELECTEDVALUE work ONLY if you have a SINGLE value selected.&amp;nbsp; That is not the case in your scenarios.&amp;nbsp; Use VALUES instead.&lt;/P&gt;</description>
    <pubDate>Mon, 14 Apr 2025 18:23:09 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2025-04-14T18:23:09Z</dc:date>
    <item>
      <title>Need help with selectedvalue within a hierarchy slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-selectedvalue-within-a-hierarchy-slicer/m-p/4652222#M178079</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;SPAN&gt;Hello,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'm looking for guidance on figuring the appropriate DAX Formula structure for the following:&amp;nbsp;&lt;BR /&gt;I want to leverage a slicer that contains my entity rollup structure&amp;nbsp;&lt;BR /&gt;Groupe Conso &amp;gt; Division &amp;gt; Secteur &amp;gt; Etablissement_GroupeDescription &amp;gt; Etablissement_ID_Description&lt;BR /&gt;My desired if to have a formula that returns the appropriate value of Dim_Etablissements_complet, in a way that :&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;If only a value of&amp;nbsp;Etablissement_ID_Description is selected it returns the Selectedvalue(Etablissement_ID_Description)&amp;nbsp;&lt;BR /&gt;if not all values of&amp;nbsp;Etablissement_ID_Description are selected within that node (e.g.&amp;nbsp;Etablissement_GroupeDescription) then it concatenates&amp;nbsp;Selectedvalue(Etablissement_ID_Description) such as 031 ; 032&lt;BR /&gt;if (4) a group value from&amp;nbsp;Etablissement_GroupeDescription is selected then it returns the&amp;nbsp;Selectedvalue(Etablissement_GroupeDescription)&lt;BR /&gt;if (3 ) a secteur value from&amp;nbsp;Secteur_Description is selected then it returns the&amp;nbsp;Selectedvalue(Secteur_Description)&lt;BR /&gt;if (2 ) a division value from Division_Description is selected then it returns the&amp;nbsp;Selectedvalue(Divison_Description)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;img /&gt;&lt;P&gt;&lt;SPAN&gt;Here are&amp;nbsp; my set of variables&lt;/SPAN&gt;&lt;/P&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_SelectedGroupConso&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Dim_Etablissements_complet'&lt;/SPAN&gt;&lt;SPAN&gt;[GroupeConso_Description]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_SelectedDivision&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Dim_Etablissements_complet'&lt;/SPAN&gt;&lt;SPAN&gt;[Division_Description]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_SelectedSecteur&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Dim_Etablissements_complet'&lt;/SPAN&gt;&lt;SPAN&gt;[Secteur_Description]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_SelectedGroupeEtablissement&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Dim_Etablissements_complet'&lt;/SPAN&gt;&lt;SPAN&gt;[Etablissement_GroupeDescription]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_SelectedEtablissement&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Dim_Etablissements_complet'&lt;/SPAN&gt;&lt;SPAN&gt;[Etablissement_ID_Description]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for you help,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Mike&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 14 Apr 2025 17:22:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-selectedvalue-within-a-hierarchy-slicer/m-p/4652222#M178079</guid>
      <dc:creator>lalumiereMike</dc:creator>
      <dc:date>2025-04-14T17:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with selectedvalue within a hierarchy slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-selectedvalue-within-a-hierarchy-slicer/m-p/4652302#M178086</link>
      <description>&lt;P&gt;SELECTEDVALUE work ONLY if you have a SINGLE value selected.&amp;nbsp; That is not the case in your scenarios.&amp;nbsp; Use VALUES instead.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2025 18:23:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-selectedvalue-within-a-hierarchy-slicer/m-p/4652302#M178086</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-04-14T18:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with selectedvalue within a hierarchy slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-selectedvalue-within-a-hierarchy-slicer/m-p/4653116#M178127</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="730583" data-lia-user-login="lalumiereMike" class="lia-mention lia-mention-user"&gt;lalumiereMike&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thank you for reaching out to us on Microsoft Fabric Community Forum!&lt;BR /&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&lt;/a&gt;&amp;nbsp;for the prompt response!Upon my understanding,In addition, please follow the below steps.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Create a hierarchy in Power BI using the following columns (GroupeConso_Description,&amp;nbsp;Division_Description,&amp;nbsp;Secteur_Description,&amp;nbsp;Etablissement_GroupeDescription,&amp;nbsp;Etablissement_ID_Description)&lt;/LI&gt;
&lt;LI&gt;Use the following measure to dynamically return the appropriate value based on the slicer selection:&lt;BR /&gt;&amp;nbsp;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Selected Entity Label = &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; _SelectedEtablissements = &lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;('Dim_Etablissements_complet'[Etablissement_ID_Description])&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; _CountEtablissements = &lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(_SelectedEtablissements)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; _SelectedGroupeEtablissement = &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;('Dim_Etablissements_complet'[Etablissement_GroupeDescription])&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; _SelectedSecteur = &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;('Dim_Etablissements_complet'[Secteur_Description])&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; _SelectedDivision = &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;('Dim_Etablissements_complet'[Division_Description])&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; _SelectedGroupConso = &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;('Dim_Etablissements_complet'[GroupeConso_Description])&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;SWITCH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;TRUE&lt;/SPAN&gt;&lt;SPAN&gt;(),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;// Only 1 Etablissement selected&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; _CountEtablissements = &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;('Dim_Etablissements_complet'[Etablissement_ID_Description]),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;// Multiple Etablissements selected AND no higher-level selection&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; _CountEtablissements &amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(_SelectedGroupeEtablissement)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(_SelectedSecteur)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(_SelectedDivision)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(_SelectedGroupConso),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CONCATENATEX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; _SelectedEtablissements, &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Dim_Etablissements_complet'[Etablissement_ID_Description], &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;" ; "&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;// Higher levels: check in order of hierarchy&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;NOT&lt;/SPAN&gt; &lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(_SelectedGroupeEtablissement), _SelectedGroupeEtablissement,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;NOT&lt;/SPAN&gt; &lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(_SelectedSecteur), _SelectedSecteur,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;NOT&lt;/SPAN&gt; &lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(_SelectedDivision), _SelectedDivision,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;NOT&lt;/SPAN&gt; &lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(_SelectedGroupConso), _SelectedGroupConso,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"No Selection"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Add this measure to a cardvisual to reflect the user’s slicer selection. The measure will adapt as users drill down or select multiple items.Refer the attached screenshot and file for your reference.&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;If this solution meets your requirement,consider accepting it as solution.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Pallavi.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 07:16:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-selectedvalue-within-a-hierarchy-slicer/m-p/4653116#M178127</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-15T07:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with selectedvalue within a hierarchy slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-selectedvalue-within-a-hierarchy-slicer/m-p/4657471#M178327</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="730583" data-lia-user-login="lalumiereMike" class="lia-mention lia-mention-user"&gt;lalumiereMike&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;I wanted to follow up on our previous suggestions regarding the issue you are facing. We would like to hear back from you to ensure we can assist you further. If our response has addressed your query, please accept it as a solution and give a ‘Kudos’ so other members can easily find it.&amp;nbsp;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 12:08:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-selectedvalue-within-a-hierarchy-slicer/m-p/4657471#M178327</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-17T12:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with selectedvalue within a hierarchy slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-selectedvalue-within-a-hierarchy-slicer/m-p/4660315#M178462</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="730583" data-lia-user-login="lalumiereMike" class="lia-mention lia-mention-user"&gt;lalumiereMike&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;As we have not received a response from you yet, I would like to confirm whether you have successfully resolved the issue or if you require further assistance. If the issue has been resolved, please mark the helpful reply as a "solution" to indicate that the question has been answered and to assist others in the community.&lt;BR /&gt;&lt;BR /&gt;Thank you for your cooperation. Have a great day.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 05:00:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-selectedvalue-within-a-hierarchy-slicer/m-p/4660315#M178462</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-21T05:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with selectedvalue within a hierarchy slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-selectedvalue-within-a-hierarchy-slicer/m-p/4665900#M178698</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="730583" data-lia-user-login="lalumiereMike" class="lia-mention lia-mention-user"&gt;lalumiereMike&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;I wanted to follow up on our previous suggestions regarding the issue you are facing. We would like to hear back from you to ensure we can assist you further. If our response has addressed your query, please accept it as a solution and give a ‘Kudos’ so other members can easily find it.&amp;nbsp;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 04:57:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-selectedvalue-within-a-hierarchy-slicer/m-p/4665900#M178698</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-24T04:57:40Z</dc:date>
    </item>
  </channel>
</rss>

