<?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: List of Slicer values with optional text value in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-Slicer-values-with-optional-text-value/m-p/2988828#M100470</link>
    <description>&lt;P&gt;hi&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;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you are indeed a Super User,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;all works, increadible, thanks a lot!&lt;/P&gt;</description>
    <pubDate>Mon, 26 Dec 2022 12:56:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-12-26T12:56:34Z</dc:date>
    <item>
      <title>List of Slicer values with optional text value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-Slicer-values-with-optional-text-value/m-p/2988752#M100458</link>
      <description>&lt;P&gt;Hi all!&lt;/P&gt;&lt;P&gt;please help with the following,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a Geo slicer with list of regions, for the sake of this example let's use continets:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Asia&lt;/LI&gt;&lt;LI&gt;Africa&lt;/LI&gt;&lt;LI&gt;Europe&lt;/LI&gt;&lt;LI&gt;North America&lt;/LI&gt;&lt;LI&gt;South America&lt;/LI&gt;&lt;LI&gt;Australia/Oceania&lt;/LI&gt;&lt;LI&gt;Antarctica&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I created a &lt;U&gt;Dynamic Text Box&lt;/U&gt; which returns selected values from a slicer,&amp;nbsp;&lt;BR /&gt;e.g.&lt;BR /&gt;if Europe is selected it returns =&amp;gt; &lt;STRONG&gt;Europe&lt;/STRONG&gt; ,&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;if Asia and Europe is selected it returns =&amp;gt; &lt;STRONG&gt;Asia and Europe&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;if 3 or more continets are selected it returns =&amp;gt; &lt;STRONG&gt;Asia and Europe, etc.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;if all continets are selected (or none is selected) it returns =&amp;gt; &lt;STRONG&gt;All&lt;/STRONG&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;the only thing I can't figure out is how to return&amp;nbsp;"&lt;STRONG&gt;all but one&lt;/STRONG&gt;" when &lt;STRONG&gt;&lt;EM&gt;one&lt;/EM&gt; &lt;/STRONG&gt;continet is &lt;U&gt;deselected&lt;/U&gt;&lt;BR /&gt;e.g. =&amp;gt; "&lt;STRONG&gt;all but Europe&lt;/STRONG&gt;" when all continents except Europe is selected or other scenarios.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 11:38:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-Slicer-values-with-optional-text-value/m-p/2988752#M100458</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-12-26T11:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: List of Slicer values with optional text value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-Slicer-values-with-optional-text-value/m-p/2988805#M100466</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt; ,&amp;nbsp; Try a measure like&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Add other conditions&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Switch( True() ,&lt;/P&gt;
&lt;P&gt;countx(all(Table[Regions]), [Regions]) -1= countx(allselected(Table[Regions]), [Regions]) , "all but" &amp;amp; maxx(except(all(Table[Regions]), allselected(Table[Regions])), [Region]) ,&lt;/P&gt;
&lt;P&gt;// add other conditions&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 12:28:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-Slicer-values-with-optional-text-value/m-p/2988805#M100466</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-12-26T12:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: List of Slicer values with optional text value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-Slicer-values-with-optional-text-value/m-p/2988828#M100470</link>
      <description>&lt;P&gt;hi&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;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you are indeed a Super User,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;all works, increadible, thanks a lot!&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 12:56:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-Slicer-values-with-optional-text-value/m-p/2988828#M100470</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-12-26T12:56:34Z</dc:date>
    </item>
  </channel>
</rss>

