<?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: Remove visual filter context in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850906#M185136</link>
    <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;Clicked&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'calendar'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Will not give me the min but the actual clicked value&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;And your first var is the one I originnaly used&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'calendar'&lt;/SPAN&gt;&lt;SPAN&gt;[date]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'calendar'&lt;/SPAN&gt;&lt;SPAN&gt;[date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 15 Oct 2025 14:00:14 GMT</pubDate>
    <dc:creator>FADAVI</dc:creator>
    <dc:date>2025-10-15T14:00:14Z</dc:date>
    <item>
      <title>Remove visual filter context</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850860#M185132</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I want that whatever the value I click in the table on the left, the red card on the right show the min value of the slicer above.&lt;BR /&gt;I wasn't able to make it work cause it shows me the clicked value in my min function.&lt;BR /&gt;I don't want to edit interraction from the table to the card because I need to capture the clicked value in the table as a max.&lt;/P&gt;&lt;P&gt;The all() function didn't helped me because It totally removes the slicer filter. So it shows me the 01/01/2024&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In few words:&lt;BR /&gt;If no click on the table&lt;BR /&gt;MIN = min slicer&lt;BR /&gt;MAX = max slicer&lt;/P&gt;&lt;P&gt;If click on a value of the table&lt;BR /&gt;MIN = min slicer&lt;BR /&gt;MAX = clicked value&lt;BR /&gt;&lt;BR /&gt;Thanks for your help&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;</description>
      <pubDate>Wed, 15 Oct 2025 13:29:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850860#M185132</guid>
      <dc:creator>FADAVI</dc:creator>
      <dc:date>2025-10-15T13:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Remove visual filter context</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850872#M185133</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="902966" data-lia-user-login="FADAVI" class="lia-mention lia-mention-user"&gt;FADAVI&lt;/a&gt;&amp;nbsp;Hi!&lt;/P&gt;
&lt;P&gt;Try with:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RedCard_Value :=&lt;BR /&gt;VAR MinSlicer =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;MIN('Table'[Date]),&lt;BR /&gt;REMOVEFILTERS('Table'[Date]) -- ignore table click, keep slicer&lt;BR /&gt;)&lt;BR /&gt;VAR ClickedOrMax =&lt;BR /&gt;IF(&lt;BR /&gt;HASONEVALUE('Table'[Date]),&lt;BR /&gt;SELECTEDVALUE('Table'[Date]), -- clicked value&lt;BR /&gt;CALCULATE(MAX('Table'[Date])) -- max from slicer&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;ClickedOrMax&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BBF&lt;/P&gt;
&lt;DIV style="font-family: Segoe UI, sans-serif; font-size: 14px; line-height: 1.2;"&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; &lt;STRONG&gt;Did I answer your question?&lt;/STRONG&gt; Mark my post as a solution! &lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Kudos are appreciated &lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":fire:"&gt;🔥&lt;/span&gt; Proud to be a Super User!&lt;/STRONG&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt; &lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 13:37:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850872#M185133</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2025-10-15T13:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Remove visual filter context</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850888#M185134</link>
      <description>&lt;P&gt;Thanks for your answer. It will not show the min value of the slicer. It will show the min value of the whole date column.&amp;nbsp;&lt;BR /&gt;In my example I set the slicer value from 01/01/2025 to 31/12/2025. Your measure will show the first of january of 2024 instead of 2025&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 13:47:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850888#M185134</guid>
      <dc:creator>FADAVI</dc:creator>
      <dc:date>2025-10-15T13:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Remove visual filter context</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850901#M185135</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="902966" data-lia-user-login="FADAVI" class="lia-mention lia-mention-user"&gt;FADAVI&lt;/a&gt;&amp;nbsp;Retry with:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RedCard_Value :=&lt;BR /&gt;VAR MinSlicer =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;MIN('Table'[Date]),&lt;BR /&gt;ALLSELECTED('Table'[Date]) // keep slicer, ignore table click&lt;BR /&gt;)&lt;BR /&gt;VAR Clicked =&lt;BR /&gt;SELECTEDVALUE('Table'[Date])&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;HASONEVALUE('Table'[Date]),&lt;BR /&gt;Clicked, // when user clicks in table&lt;BR /&gt;MinSlicer // when nothing clicked&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BBF&lt;/P&gt;
&lt;DIV style="font-family: Segoe UI, sans-serif; font-size: 14px; line-height: 1.2;"&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; &lt;STRONG&gt;Did I answer your question?&lt;/STRONG&gt; Mark my post as a solution! &lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Kudos are appreciated &lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":fire:"&gt;🔥&lt;/span&gt; Proud to be a Super User!&lt;/STRONG&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt; &lt;/DIV&gt;</description>
      <pubDate>Wed, 15 Oct 2025 13:53:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850901#M185135</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2025-10-15T13:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: Remove visual filter context</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850906#M185136</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;Clicked&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'calendar'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Will not give me the min but the actual clicked value&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;And your first var is the one I originnaly used&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'calendar'&lt;/SPAN&gt;&lt;SPAN&gt;[date]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'calendar'&lt;/SPAN&gt;&lt;SPAN&gt;[date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 15 Oct 2025 14:00:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850906#M185136</guid>
      <dc:creator>FADAVI</dc:creator>
      <dc:date>2025-10-15T14:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Remove visual filter context</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850923#M185137</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="902966" data-lia-user-login="FADAVI" class="lia-mention lia-mention-user"&gt;FADAVI&lt;/a&gt;&amp;nbsp;So I don't know if I undestood your request, can you better explain it?&lt;BR /&gt;&lt;BR /&gt;RedCard_Value :=&lt;BR /&gt;VAR SlicerRange =&lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;VALUES('calendar'[Date]),&lt;BR /&gt;ALLSELECTED('calendar'[Date])&lt;BR /&gt;)&lt;BR /&gt;VAR MinSlicer =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;MIN('calendar'[Date]),&lt;BR /&gt;REMOVEFILTERS('calendar'[Date]),&lt;BR /&gt;KEEPFILTERS(TREATAS(SlicerRange, 'calendar'[Date]))&lt;BR /&gt;)&lt;BR /&gt;VAR ClickedValue =&lt;BR /&gt;SELECTEDVALUE('calendar'[Date])&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;HASONEVALUE('calendar'[Date]),&lt;BR /&gt;ClickedValue, -- When a table value is clicked&lt;BR /&gt;MinSlicer -- When nothing is clicked&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BBF&lt;/P&gt;
&lt;DIV style="font-family: Segoe UI, sans-serif; font-size: 14px; line-height: 1.2;"&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; &lt;STRONG&gt;Did I answer your question?&lt;/STRONG&gt; Mark my post as a solution! &lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Kudos are appreciated &lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":fire:"&gt;🔥&lt;/span&gt; Proud to be a Super User!&lt;/STRONG&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt; &lt;/DIV&gt;</description>
      <pubDate>Wed, 15 Oct 2025 14:04:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850923#M185137</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2025-10-15T14:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Remove visual filter context</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850931#M185138</link>
      <description>&lt;P&gt;Ok let's explain it another way.&amp;nbsp;&lt;BR /&gt;I want all the dates in the range set in the slicer.&amp;nbsp;&lt;BR /&gt;I want when I click in the table to be able to have a range from the start of the slicer to the clicked value in the table, for another visual that used both of these values.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;So I want MIN to be always the same and MAX to be either the one in the slicer or if I click on a value the selected value.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I want my MIN value to keep being the first value of the slicer it means removing the visual filter context when I click on value&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 14:12:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850931#M185138</guid>
      <dc:creator>FADAVI</dc:creator>
      <dc:date>2025-10-15T14:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: Remove visual filter context</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850951#M185140</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="902966" data-lia-user-login="FADAVI" class="lia-mention lia-mention-user"&gt;FADAVI&lt;/a&gt;&amp;nbsp;ok, try with:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Min_Slicer_Date :=&lt;BR /&gt;VAR SlicerRange =&lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;VALUES('Calendar'[Date]),&lt;BR /&gt;ALLSELECTED('Calendar'[Date]) // gets only the slicer range&lt;BR /&gt;)&lt;BR /&gt;VAR MinSlicer =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;MIN('Calendar'[Date]),&lt;BR /&gt;REMOVEFILTERS('Calendar'[Date]), // remove visual filters (table click)&lt;BR /&gt;KEEPFILTERS(TREATAS(SlicerRange, 'Calendar'[Date])) // reapply slicer range&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;MinSlicer&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BBF&lt;/P&gt;
&lt;DIV style="font-family: Segoe UI, sans-serif; font-size: 14px; line-height: 1.2;"&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; &lt;STRONG&gt;Did I answer your question?&lt;/STRONG&gt; Mark my post as a solution! &lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Kudos are appreciated &lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":fire:"&gt;🔥&lt;/span&gt; Proud to be a Super User!&lt;/STRONG&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt; &lt;/DIV&gt;</description>
      <pubDate>Wed, 15 Oct 2025 14:29:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850951#M185140</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2025-10-15T14:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: Remove visual filter context</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850961#M185141</link>
      <description>&lt;P&gt;TY again for your help, I appreciate. It's a tricky problem. I doesn't work either.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;On the screenshot bellow I clicked on 03/01/2025. It should have been 01/01/2025 in your card&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 14:37:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850961#M185141</guid>
      <dc:creator>FADAVI</dc:creator>
      <dc:date>2025-10-15T14:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: Remove visual filter context</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850986#M185143</link>
      <description>&lt;P&gt;You're the one !!&amp;nbsp;Thanks a lot.&lt;BR /&gt;It seems to work .&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will try to make it work in my real use case.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I just don't understand what you did, I will try to&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Have a good one.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 15:05:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850986#M185143</guid>
      <dc:creator>FADAVI</dc:creator>
      <dc:date>2025-10-15T15:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Remove visual filter context</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850987#M185144</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="902966" data-lia-user-login="FADAVI" class="lia-mention lia-mention-user"&gt;FADAVI&lt;/a&gt;&amp;nbsp;Here an updated PBIX, in the previous there was a bug.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it fix your problem, please accept this answear as a solution!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BBF&lt;/P&gt;
&lt;DIV style="font-family: Segoe UI, sans-serif; font-size: 14px; line-height: 1.2;"&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; &lt;STRONG&gt;Did I answer your question?&lt;/STRONG&gt; Mark my post as a solution! &lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Kudos are appreciated &lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":fire:"&gt;🔥&lt;/span&gt; Proud to be a Super User!&lt;/STRONG&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt; &lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 15:09:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-visual-filter-context/m-p/4850987#M185144</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2025-10-15T15:09:16Z</dc:date>
    </item>
  </channel>
</rss>

