<?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: Understanding if the user has selected all options on a slicer in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4908548#M186558</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="287408" data-lia-user-login="ValeriaBreve" class="lia-mention lia-mention-user"&gt;ValeriaBreve&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;try below measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Is Slicer Engaged = 
VAR TotalItems = COUNTROWS(ALL(D_ProductionLinesWithCC[ProductionLineCodeCC]))
VAR FilteredItems = COUNTROWS(FILTERS(D_ProductionLinesWithCC[ProductionLineCodeCC]))

RETURN
IF(
    ISFILTERED(D_ProductionLinesWithCC[ProductionLineCodeCC]) &amp;amp;&amp;amp; FilteredItems = TotalItems,
    "User Manually Selected All",
    IF(
        ISFILTERED(D_ProductionLinesWithCC[ProductionLineCodeCC]),
        "User Selected Some",
        "No Interaction (Defaults to All)"
    )
)&lt;/LI-CODE&gt;&lt;P&gt;Output can be configured based on requirements.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please give kudos or mark it as solution once confirmed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Praful&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 25 Dec 2025 18:36:55 GMT</pubDate>
    <dc:creator>Praful_Potphode</dc:creator>
    <dc:date>2025-12-25T18:36:55Z</dc:date>
    <item>
      <title>Understanding if the user has selected all options on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4907673#M186544</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am trying to figure out a way to understand whether a user has selected all items on a slicer or no items at all.&lt;/P&gt;&lt;P&gt;If I use the formula&amp;nbsp;&lt;/P&gt;&lt;P&gt;ISFILTERED( D_ProductionLinesWithCC[ProductionLineCodeCC] )&lt;/P&gt;&lt;P&gt;it returns true if all items are sliced but 1. As soon as the user selects all items, it returns false as if none were selected.&lt;/P&gt;&lt;P&gt;Is there&amp;nbsp; a way to tell whether the user is actively engaging with the slicer and selecting all items?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am asking because I have a master slicer on top, and if I don't handle this, PowerBI considers that all items in the subslicer are selected if if the user has not touched them yet.&lt;/P&gt;&lt;P&gt;I am using the new button slicer visual.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Valeria&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Dec 2025 17:14:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4907673#M186544</guid>
      <dc:creator>ValeriaBreve</dc:creator>
      <dc:date>2025-12-23T17:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding if the user has selected all options on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4907680#M186546</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="287408" data-lia-user-login="ValeriaBreve" class="lia-mention lia-mention-user"&gt;ValeriaBreve&lt;/a&gt;&amp;nbsp;You could do a COUNTROWS( 'Table' ) and an COUNTROWS( ALL( 'Table' ) ). If they are equal to one another then all items have been selected.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Dec 2025 17:36:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4907680#M186546</guid>
      <dc:creator>GeraldGEmerick</dc:creator>
      <dc:date>2025-12-23T17:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding if the user has selected all options on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4907804#M186547</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="287408" data-lia-user-login="ValeriaBreve" class="lia-mention lia-mention-user"&gt;ValeriaBreve&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I hope you are doing well today☺️&lt;span class="lia-unicode-emoji" title=":red_heart:"&gt;❤️&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So here is some points:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;DAX can't distinguish between &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Select All&lt;/FONT&gt; &lt;/STRONG&gt;and untouched slicer (This is a limitation of the Power BI engine)&lt;/LI&gt;&lt;LI&gt;Your DAX formula&amp;nbsp;&lt;FONT color="#FF0000"&gt;ISFILTERED( D_ProductionLinesWithCC[ProductionLineCodeCC] )&lt;/FONT&gt; only&amp;nbsp;tells you whether the column is &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;filtered&lt;/STRONG&gt;&lt;/FONT&gt; not &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;how&lt;/STRONG&gt; &lt;/FONT&gt;or by &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;whom&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;So when all values are in context &lt;FONT color="#FF0000"&gt;ISFILTERED() &lt;STRONG&gt;correctly returns&lt;/STRONG&gt; &lt;STRONG&gt;FALSE&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;because from the engine POV there is no effective filter on that column (This is the normal behavior of power bi)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Here is Some &lt;STRONG&gt;&lt;FONT color="#99CC00"&gt;Approaches&lt;/FONT&gt; &lt;/STRONG&gt;you can try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="4" color="#FF6600"&gt;First Approach: &lt;/FONT&gt;I highly recommend it and used it before&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You can use a &lt;STRONG&gt;&lt;FONT color="#FF6600"&gt;disconnected control table&lt;/FONT&gt; &lt;/STRONG&gt;(We call it &lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;Mode Slicer&lt;/STRONG&gt;&lt;/FONT&gt;)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;First create a &lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;small disconnected table&lt;/STRONG&gt;&lt;/FONT&gt; (Use this slicer to let the user explicitly choose the behavior):&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;Valeria ModeSlicer =
DATATABLE(
    "Mode", STRING,
    {
        { "Auto (Use Master)" },
        { "Manual" }
    }
)&lt;/LI-CODE&gt;&lt;UL&gt;&lt;LI&gt;Then branch your logic:&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;Smart Measure =
VAR Mode = SELECTEDVALUE(Valeria ModeSlicer[Mode], "Auto (Use Master)")
RETURN
SWITCH(
    Mode,
    "Auto (Use Master)",
        CALCULATE([Base Measure], REMOVEFILTERS(SubSlicer[Column])),
    "Manual",
        [Base Measure]
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="4" color="#99CC00"&gt;&lt;STRONG&gt;Second Approach:&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;STRONG&gt;Bookmark&lt;/STRONG&gt; + &lt;STRONG&gt;button toggle&lt;/STRONG&gt; (UX clarity &lt;STRONG&gt;&lt;FONT color="#99CC00"&gt;Approach&lt;/FONT&gt;&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;Just Create &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;2 Bookmarks&lt;/FONT&gt;&lt;/STRONG&gt; and &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Buttons&lt;/FONT&gt; &lt;/STRONG&gt;to toggle &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;between the modes&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Bookmark A sub slicer ignored (default state)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;Bookmark B (sub slicer active)&lt;/LI&gt;&lt;LI&gt;Buttons toggle between modes&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="4" color="#00CCFF"&gt;&lt;STRONG&gt;Final Approach:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;This &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;not an approach&lt;/STRONG&gt; &lt;/FONT&gt;but is what you thinking about or your business &lt;FONT color="#00CCFF"&gt;&lt;STRONG&gt;(Design Approach)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;So If you dont want to do all of above Approaches Stop&amp;nbsp;trying to detect user clicks and build your report around Power BI Limitations&lt;/LI&gt;&lt;LI&gt;The Core of this Approach idea is to treat &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;All Selected&lt;/STRONG&gt;&lt;/FONT&gt; and &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Untouched&lt;/FONT&gt; &lt;/STRONG&gt;as the same valid state (No active filter)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;To Apply this you need first to apply the rules for your&amp;nbsp;sub slicer and measures like:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Partial master selection&amp;nbsp;&amp;gt; sub slicer filters normally&lt;/LI&gt;&lt;LI&gt;All master items (untouched or Select All) &amp;gt; sub slicer works independently&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;Slicer Has Effect :=
VAR SelectedCount = COUNTROWS(VALUES(SubSlicer[Column]))
VAR TotalCount = COUNTROWS(ALL(SubSlicer[Column]))
RETURN SelectedCount &amp;lt; TotalCount&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Smart Measure :=
IF([Slicer Has Effect],
    [Base Measure],                  -- apply sub-slicer
    CALCULATE([Base Measure], REMOVEFILTERS(SubSlicer[Column]))  -- ignore slicer
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="4" color="#FFCC00"&gt;&lt;STRONG&gt;Final Thought (Advice):&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If you want more control and you design this for entrprise (like me) use the &lt;STRONG&gt;&lt;FONT color="#FF6600"&gt;First Approach&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;If you want the best UX clarity use the&amp;nbsp;&lt;FONT color="#99CC00"&gt;&lt;STRONG&gt;Second Approach&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;If you want the simplest solution and dont want to fight Power BI&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt; use the&amp;nbsp;&lt;FONT color="#00CCFF"&gt;&lt;STRONG&gt;Final Approach&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;EM&gt;if this post helps, then I would appreciate a thumbs up&lt;/EM&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;EM&gt;and&amp;nbsp;&lt;STRONG&gt;mark it as the solution&lt;/STRONG&gt;&amp;nbsp;&lt;/EM&gt;&lt;EM&gt;to help the other members find it more quickly.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 24 Dec 2025 03:29:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4907804#M186547</guid>
      <dc:creator>Ahmed-Elfeel</dc:creator>
      <dc:date>2025-12-24T03:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding if the user has selected all options on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4908186#M186551</link>
      <description>&lt;P&gt;ISFILTERED() can’t distinguish “no selection” from “all selected”, because in both cases the column ends up effectively unfiltered.&lt;/P&gt;&lt;P&gt;The usual way is to compare how many values are currently visible vs how many exist in the full list.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Slicer State =
VAR SelectedCnt =
    COUNTROWS ( ALLSELECTED ( D_ProductionLinesWithCC[ProductionLineCodeCC] ) )
VAR TotalCnt =
    COUNTROWS ( ALL ( D_ProductionLinesWithCC[ProductionLineCodeCC] ) )
RETURN
SWITCH(
    TRUE(),
    SelectedCnt = 0,          "None",          -- rare, but possible if other filters remove everything
    SelectedCnt = TotalCnt,   "All (or untouched)",
    "Partial"
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2025 11:00:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4908186#M186551</guid>
      <dc:creator>cengizhanarslan</dc:creator>
      <dc:date>2025-12-24T11:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding if the user has selected all options on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4908548#M186558</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="287408" data-lia-user-login="ValeriaBreve" class="lia-mention lia-mention-user"&gt;ValeriaBreve&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;try below measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Is Slicer Engaged = 
VAR TotalItems = COUNTROWS(ALL(D_ProductionLinesWithCC[ProductionLineCodeCC]))
VAR FilteredItems = COUNTROWS(FILTERS(D_ProductionLinesWithCC[ProductionLineCodeCC]))

RETURN
IF(
    ISFILTERED(D_ProductionLinesWithCC[ProductionLineCodeCC]) &amp;amp;&amp;amp; FilteredItems = TotalItems,
    "User Manually Selected All",
    IF(
        ISFILTERED(D_ProductionLinesWithCC[ProductionLineCodeCC]),
        "User Selected Some",
        "No Interaction (Defaults to All)"
    )
)&lt;/LI-CODE&gt;&lt;P&gt;Output can be configured based on requirements.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please give kudos or mark it as solution once confirmed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Praful&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Dec 2025 18:36:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4908548#M186558</guid>
      <dc:creator>Praful_Potphode</dc:creator>
      <dc:date>2025-12-25T18:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding if the user has selected all options on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4909565#M186580</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="287408" data-lia-user-login="ValeriaBreve" class="lia-mention lia-mention-user"&gt;ValeriaBreve&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thanks for reaching out to Microsoft Fabric Community.&lt;BR /&gt;Just wanted to check if the responses provided were helpful. If further assistance is needed, please reach out.&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2025 05:11:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4909565#M186580</guid>
      <dc:creator>v-veshwara-msft</dc:creator>
      <dc:date>2025-12-29T05:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding if the user has selected all options on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4911473#M186609</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1261729" data-lia-user-login="Praful_Potphode" class="lia-mention lia-mention-user"&gt;Praful_Potphode&lt;/a&gt;&amp;nbsp;and sorry for the late reply - Christmas break! Unfortunately the solution does not work - PowerBI does not see the difference between when the user selects no unit and when it selects all of them. It does of course work correctly when some units are selected - just not all of them.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 10:28:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4911473#M186609</guid>
      <dc:creator>ValeriaBreve</dc:creator>
      <dc:date>2026-01-02T10:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding if the user has selected all options on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4911474#M186610</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1292787" data-lia-user-login="cengizhanarslan" class="lia-mention lia-mention-user"&gt;cengizhanarslan&lt;/a&gt;&amp;nbsp;and sorry for the late reply. In my case, unfortunately this method cannot work, as the number of items in the full list are the same as the number of selected items if the user selects all of them. But I'll keep it mind for the future, in case I have this scenario!&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 10:32:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4911474#M186610</guid>
      <dc:creator>ValeriaBreve</dc:creator>
      <dc:date>2026-01-02T10:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding if the user has selected all options on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4911478#M186611</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="838901" data-lia-user-login="Ahmed-Elfeel" class="lia-mention lia-mention-user"&gt;Ahmed-Elfeel&lt;/a&gt;&amp;nbsp;! This is very clear. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 10:35:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4911478#M186611</guid>
      <dc:creator>ValeriaBreve</dc:creator>
      <dc:date>2026-01-02T10:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding if the user has selected all options on a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4911479#M186612</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1338394" data-lia-user-login="GeraldGEmerick" class="lia-mention lia-mention-user"&gt;GeraldGEmerick&lt;/a&gt;&amp;nbsp;thank you for the reply! In my case unfortunately this does not work as if nothing is selected the countrows will be exactly the same as if everything is selected, as there are no filters applied to the table....&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 10:38:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-if-the-user-has-selected-all-options-on-a-slicer/m-p/4911479#M186612</guid>
      <dc:creator>ValeriaBreve</dc:creator>
      <dc:date>2026-01-02T10:38:03Z</dc:date>
    </item>
  </channel>
</rss>

