<?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 Know what slicers are filtering in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Know-what-slicers-are-filtering/m-p/2813855#M89150</link>
    <description>&lt;P&gt;hey&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have report page with a lot of slicers&lt;/P&gt;&lt;P&gt;I wanna create a measure that enumerates what slicers are being used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*Year and Month slicer is filtering*&lt;/P&gt;&lt;P&gt;output : Is being filtered by: Year, Month&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 03 Oct 2022 12:11:37 GMT</pubDate>
    <dc:creator>edubcardoso</dc:creator>
    <dc:date>2022-10-03T12:11:37Z</dc:date>
    <item>
      <title>Know what slicers are filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Know-what-slicers-are-filtering/m-p/2813855#M89150</link>
      <description>&lt;P&gt;hey&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have report page with a lot of slicers&lt;/P&gt;&lt;P&gt;I wanna create a measure that enumerates what slicers are being used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*Year and Month slicer is filtering*&lt;/P&gt;&lt;P&gt;output : Is being filtered by: Year, Month&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 12:11:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Know-what-slicers-are-filtering/m-p/2813855#M89150</guid>
      <dc:creator>edubcardoso</dc:creator>
      <dc:date>2022-10-03T12:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Know what slicers are filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Know-what-slicers-are-filtering/m-p/2813875#M89153</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="401636" data-lia-user-login="edubcardoso" class="lia-mention lia-mention-user"&gt;edubcardoso&lt;/a&gt;&amp;nbsp;&lt;A href="https://www.sqlbi.com/articles/displaying-filter-context-in-power-bi-tooltips/#:~:text=The%202.8%20version%20of%20DAX%20Studio%20introduced%20a,the%20items%20that%20are%20applied%20as%20a%20filter." target="_blank"&gt;Displaying filter context in Power BI Tooltips - SQLBI&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 12:17:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Know-what-slicers-are-filtering/m-p/2813875#M89153</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-10-03T12:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Know what slicers are filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Know-what-slicers-are-filtering/m-p/2814286#M89176</link>
      <description>&lt;P&gt;I think it was not quite what I wanted , but thanks for helping&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to solved it. I dont know if it was the smart way to do it, but it works&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DummyFilter = 
VAR year = IF(ISFILTERED(Calendar[Year]),1)
VAR month = IF(ISFILTERED(Calendar[Month]),1)

VAR sum = year + month 
RETURN
IF(sum&amp;gt; 0 , "Filters are being applied to: " &amp;amp;
    IF(year = 1,"Year, ") &amp;amp;
    IF(month = 1,"Month, ") &amp;amp;

    ,"No filters are applied.")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 14:36:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Know-what-slicers-are-filtering/m-p/2814286#M89176</guid>
      <dc:creator>edubcardoso</dc:creator>
      <dc:date>2022-10-03T14:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Know what slicers are filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Know-what-slicers-are-filtering/m-p/2814383#M89186</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="401636" data-lia-user-login="edubcardoso" class="lia-mention lia-mention-user"&gt;edubcardoso&lt;/a&gt;&amp;nbsp;Yep, basically the same technique.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 15:15:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Know-what-slicers-are-filtering/m-p/2814383#M89186</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-10-03T15:15:19Z</dc:date>
    </item>
  </channel>
</rss>

