<?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: display &amp;quot;All&amp;quot; when all filter is selected on a slicer in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/display-quot-All-quot-when-all-filter-is-selected-on-a-slicer/m-p/2955331#M98167</link>
    <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on your formula alone, it doesn't give the right advice. Perhaps you can provide a simple sample so that we can give you a suitable recommendation based on your data and needs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Ailsa Tao&lt;BR /&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
    <pubDate>Thu, 08 Dec 2022 02:16:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-12-08T02:16:10Z</dc:date>
    <item>
      <title>display "All" when all filter is selected on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/display-quot-All-quot-when-all-filter-is-selected-on-a-slicer/m-p/2953760#M98042</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On a title of a visulization, i've displayed the text when a the slicer is selected with this measure :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;LI-CODE lang="markup"&gt;TitleTxt = 

VAR Region = CONCATENATEX(
VALUES('Dimension - Région'), 'Dimension - Région'[REGION], ", ")


VAR Levier = CONCATENATEX(
VALUES('Dimension - Levier'[LEVIERS]), 'Dimension - Levier'[LEVIERS], ", ")

VAR Agence = CONCATENATEX(
VALUES('Dimension - Agence'[AGENCE]), 'Dimension - Agence'[AGENCE], ", ")



RETURN
"Budget :   " &amp;amp; Region &amp;amp; " - " &amp;amp; Levier &amp;amp; " - " &amp;amp; Agence&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's working well but for all slicer i have a lot of filter so the vizualisation is flooded with text.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What i wanna do is &lt;STRONG&gt;when all filter is selected for each slicer it dosen't display all the text but instead "ALL"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example : All region is selected so instead of showing all region it shows "ALL"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Same for LEVIER and AGENCE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;So in the end it could : Paris - ALL - ALL&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;If it's not clear i'm sorry for my english&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2022 10:32:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/display-quot-All-quot-when-all-filter-is-selected-on-a-slicer/m-p/2953760#M98042</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-12-07T10:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: display "All" when all filter is selected on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/display-quot-All-quot-when-all-filter-is-selected-on-a-slicer/m-p/2954317#M98098</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , you can use isfiltered &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;example&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;VAR Levier = if(isfiltered('Dimension - Levier'[LEVIERS]) , CONCATENATEX(&lt;BR /&gt;VALUES('Dimension - Levier'[LEVIERS]), 'Dimension - Levier'[LEVIERS], ", "), "All")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HasOneValue , Isfiltered: &lt;A href="https://www.youtube.com/watch?v=hXg3kRFSGjA&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=38" target="_blank"&gt;https://www.youtube.com/watch?v=hXg3kRFSGjA&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=38&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2022 14:42:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/display-quot-All-quot-when-all-filter-is-selected-on-a-slicer/m-p/2954317#M98098</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-12-07T14:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: display "All" when all filter is selected on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/display-quot-All-quot-when-all-filter-is-selected-on-a-slicer/m-p/2954468#M98108</link>
      <description>&lt;P&gt;Ty for your answer but your code is not working properly. When all the filter from the slicer is displayed, i still have all the filter showed in my vizualisation&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;TitleTxt = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;Levier&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;isfiltered&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Dimension - Levier'&lt;/SPAN&gt;&lt;SPAN&gt;[LEVIERS]&lt;/SPAN&gt;&lt;SPAN&gt;) , &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;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Dimension - Levier'&lt;/SPAN&gt;&lt;SPAN&gt;[LEVIERS]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;'Dimension - Levier'&lt;/SPAN&gt;&lt;SPAN&gt;[LEVIERS]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;", "&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;"All"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"Budget : &amp;nbsp; "&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;Levier&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 07 Dec 2022 15:27:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/display-quot-All-quot-when-all-filter-is-selected-on-a-slicer/m-p/2954468#M98108</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-12-07T15:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: display "All" when all filter is selected on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/display-quot-All-quot-when-all-filter-is-selected-on-a-slicer/m-p/2955331#M98167</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on your formula alone, it doesn't give the right advice. Perhaps you can provide a simple sample so that we can give you a suitable recommendation based on your data and needs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Ailsa Tao&lt;BR /&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2022 02:16:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/display-quot-All-quot-when-all-filter-is-selected-on-a-slicer/m-p/2955331#M98167</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-12-08T02:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: display "All" when all filter is selected on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/display-quot-All-quot-when-all-filter-is-selected-on-a-slicer/m-p/2956177#M98206</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Yes sure.&lt;BR /&gt;&lt;BR /&gt;When only one item is selected it looks fine&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;But when more than 3 thing is selected it start to get ugly&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ideally, i want to display a text when the user select more than 3 filter on each slicer&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2022 09:09:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/display-quot-All-quot-when-all-filter-is-selected-on-a-slicer/m-p/2956177#M98206</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-12-08T09:09:18Z</dc:date>
    </item>
  </channel>
</rss>

