<?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 modify the slicer filter in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/modify-the-slicer-filter/m-p/2508658#M69543</link>
    <description>&lt;P&gt;i want to show the slicer title to be inside the bar instead of 'All' in case there is no selection .&lt;/P&gt;&lt;P&gt;how the current slicer look:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i would&amp;nbsp; like to have the title to be inside the bar as :&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 11 May 2022 19:53:17 GMT</pubDate>
    <dc:creator>lawada</dc:creator>
    <dc:date>2022-05-11T19:53:17Z</dc:date>
    <item>
      <title>modify the slicer filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/modify-the-slicer-filter/m-p/2508658#M69543</link>
      <description>&lt;P&gt;i want to show the slicer title to be inside the bar instead of 'All' in case there is no selection .&lt;/P&gt;&lt;P&gt;how the current slicer look:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i would&amp;nbsp; like to have the title to be inside the bar as :&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2022 19:53:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/modify-the-slicer-filter/m-p/2508658#M69543</guid>
      <dc:creator>lawada</dc:creator>
      <dc:date>2022-05-11T19:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: modify the slicer filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/modify-the-slicer-filter/m-p/2509551#M69572</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="222024" data-lia-user-login="lawada" class="lia-mention lia-mention-user"&gt;lawada&lt;/a&gt; , I doubt there is an option for that&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 06:34:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/modify-the-slicer-filter/m-p/2509551#M69572</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-05-12T06:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: modify the slicer filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/modify-the-slicer-filter/m-p/2516705#M70014</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="222024" data-lia-user-login="lawada" class="lia-mention lia-mention-user"&gt;lawada&lt;/a&gt;&amp;nbsp;;&lt;/P&gt;
&lt;P&gt;Currently, we cannot customize the default value of "ALL" to other values such as "All Field Name" in format.&lt;/P&gt;
&lt;P&gt;But we can build a visual card by one measure and group this visual and segmenter to achieve its goal.&lt;/P&gt;
&lt;P&gt;I build a slicer table.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Then build a measure.&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="java"&gt;Measure = 
VAR _countrow =
    COUNTROWS ( 'Table' )
VAR _Total =
    COUNTROWS ( ALL ( 'Table' ) )
RETURN
    IF (
        _countrow = 1,
        MAX ( 'Table'[Year] ),
        IF ( _countrow &amp;lt; _Total, "Multiple Selections", "Year" )
    )&lt;/LI-CODE&gt;
&lt;P&gt;Put measure in card visual and set the text size and display the title.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Display the slicer header.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Then group them and set the sort display.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;The final show:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can vote on an idea using this link for this feature:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://ideas.powerbi.com/ideas/idea/?ideaid=ae712379-05f0-4fb1-9ebe-e95f0cc81387" target="_blank" rel="nofollow noopener noreferrer"&gt;https://ideas.powerbi.com/ideas/search-ideas/&lt;/A&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Yalan Wu&lt;BR /&gt;If this post &lt;STRONG&gt;&lt;I&gt;helps&lt;/I&gt;&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>Mon, 16 May 2022 07:26:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/modify-the-slicer-filter/m-p/2516705#M70014</guid>
      <dc:creator>v-yalanwu-msft</dc:creator>
      <dc:date>2022-05-16T07:26:38Z</dc:date>
    </item>
  </channel>
</rss>

