<?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: Urgent Help: How to rename the 'select all' option to say 'all products' in a slicer in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Urgent-Help-How-to-rename-the-select-all-option-to-say-all/m-p/3817009#M149276</link>
    <description>&lt;P&gt;Not currently possible (no matter if urgent or not)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this is important to you please consider voting for an existing idea or raising a new one at &lt;A href="https://ideas.fabric.microsoft.com/?forum=2d80fd4a-16cb-4189-896b-e0dac5e08b41" target="_blank"&gt;https://ideas.fabric.microsoft.com/?forum=2d80fd4a-16cb-4189-896b-e0dac5e08b41&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 07 Apr 2024 18:38:15 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2024-04-07T18:38:15Z</dc:date>
    <item>
      <title>Urgent Help: How to rename the 'select all' option to say 'all products' in a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Urgent-Help-How-to-rename-the-select-all-option-to-say-all/m-p/3816929#M149275</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a multiselect slicer that has select all option in it. My slicer is also filtered from the filter pane by 'filter on this visual'. So, things filtered appear in the slicer. Because its a multiselect, I also have the select all option switched on from the visualization&amp;gt;&amp;gt;Format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to edit the 'Select All' to say 'All products'. I have created a calculated table for this but now the issue is 'All products' is all the products present in my dataset and not the cumulation of products from the filter pane. I want to rename 'select all' to 'all products' and this should be equivalent to only the products selected in the filter. Can someone help please urgently??&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 17:27:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Urgent-Help-How-to-rename-the-select-all-option-to-say-all/m-p/3816929#M149275</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-07T17:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent Help: How to rename the 'select all' option to say 'all products' in a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Urgent-Help-How-to-rename-the-select-all-option-to-say-all/m-p/3817009#M149276</link>
      <description>&lt;P&gt;Not currently possible (no matter if urgent or not)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this is important to you please consider voting for an existing idea or raising a new one at &lt;A href="https://ideas.fabric.microsoft.com/?forum=2d80fd4a-16cb-4189-896b-e0dac5e08b41" target="_blank"&gt;https://ideas.fabric.microsoft.com/?forum=2d80fd4a-16cb-4189-896b-e0dac5e08b41&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 18:38:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Urgent-Help-How-to-rename-the-select-all-option-to-say-all/m-p/3817009#M149276</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-04-07T18:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent Help: How to rename the 'select all' option to say 'all products' in a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Urgent-Help-How-to-rename-the-select-all-option-to-say-all/m-p/3822196#M149475</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Good point &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;, currently power bi doesn't support directly renaming slicer's full options. But one can get to achieve this with the help of dax expressions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. have these countries in my table.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;2. create calculated table without creating relationship with original table.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table =

VAR _country = DISTINCT('financials'[Country])

RETURN

_country&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. use country in the calculation table as a filter throughout the page.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. create MEASURE.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =

var _column=SELECTEDVALUE('Table'[Country])

var _flag=

CONCATENATEX(

ALLSELECTED('Table'),

'Table'[Country], "-"

)

RETURN

IF(

CONTAINSSTRING(

_flag,MAX('financials'[Country]))=TRUE()

,1,0)&lt;/LI-CODE&gt;
&lt;P&gt;5. Only data with a MEASURE value of 1 is displayed.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;6. This method can't directly change the name of the Select All button, but clearing the filter will show the content of all filters.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Also, this solution may inspire you: Solved &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Rename-quot-Select-All-quot-option-in-the-slicer-to/td-p/2197566" target="_blank"&gt;: How to Rename "Select All" option in the slicer to.&lt;/A&gt;.. - &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Rename-quot-Select-All-quot-option-in-the-slicer-to/td-p/2197566" target="_blank"&gt; Microsoft Fabric Community&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your Current Period does not refer to this, please clarify in a follow-up reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Clara Gong&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 08:08:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Urgent-Help-How-to-rename-the-select-all-option-to-say-all/m-p/3822196#M149475</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-09T08:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent Help: How to rename the 'select all' option to say 'all products' in a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Urgent-Help-How-to-rename-the-select-all-option-to-say-all/m-p/4691093#M179634</link>
      <description>&lt;P&gt;An option to simply change the "ALL" text on a slicer should have been implemented years ago. It's 2025 now. Can't believe this is still no option.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 14:01:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Urgent-Help-How-to-rename-the-select-all-option-to-say-all/m-p/4691093#M179634</guid>
      <dc:creator>F2THEB</dc:creator>
      <dc:date>2025-05-13T14:01:56Z</dc:date>
    </item>
  </channel>
</rss>

