<?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: Is there a DAX function similar to ALLEXCEPT that removes just a single filter and keeps the others? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/1698627#M34964</link>
    <description>&lt;P&gt;Thanks to both of you for your suggestions.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;It took me another four hours to get to the solution, as REMOVEFILTERS or ALL where not usable in my DAX context.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But I found the solution for me was to use this DAX measure (pseudo code):&lt;BR /&gt;Measure1 = CALCULATE([Value], CALCULATETABLE(ALLSELECTED(Data), REMOVEFILTERS(Data[FilterColumnToRemove])))&lt;/P&gt;&lt;P&gt;This is much simpler than what I have use before and works with external filters and filters in the context of the visual in use.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Lars&lt;/P&gt;</description>
    <pubDate>Tue, 02 Mar 2021 13:32:41 GMT</pubDate>
    <dc:creator>lsteffens</dc:creator>
    <dc:date>2021-03-02T13:32:41Z</dc:date>
    <item>
      <title>Is there a DAX function similar to ALLEXCEPT that removes just a single filter and keeps the others?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/1692183#M34800</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hi.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I have this "simple" measure that calculates a sum of the column "Value" filtered by the slices values I give (FilterColumn1-N) plus a last filter in the measure DAX code (Data[Year] = Data[Data_MaxYear] - 1).&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(preudo code to descibe my question ...)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure1 = CALCULATE(SUM(Data[Value]), FILTER(ALLEXCEPT(Data, Data[FilterColumn1], Data[FilterColumn2], ... , Data[FilterColumnN] ), Data[Year] = Data[Data_MaxYear] - 1))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This works, but is not ideal as I have to describe ALL the filter columns I will accept (&lt;SPAN&gt;FilterColumn1&lt;/SPAN&gt;-N). And there are many "external" slicers and visuals that filter many columns in my PBI report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I really need is a similar DAX function like ALLEXCEPT that just removes ONE filter column, but keep all the others.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems like a logical DAX function, but I could not find it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anybody help me here?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Lars&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 13:02:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/1692183#M34800</guid>
      <dc:creator>lsteffens</dc:creator>
      <dc:date>2021-02-26T13:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a DAX function similar to ALLEXCEPT that removes just a single filter and keeps the others?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/1692313#M34803</link>
      <description>&lt;P&gt;Removefilters(&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/nl-nl/dax/removefilters-function-dax&amp;nbsp;" target="_blank"&gt;https://docs.microsoft.com/nl-nl/dax/removefilters-function-dax&amp;nbsp;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 14:13:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/1692313#M34803</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2021-02-26T14:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a DAX function similar to ALLEXCEPT that removes just a single filter and keeps the others?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/1692406#M34806</link>
      <description>&lt;P&gt;ALL used as a &lt;STRONG&gt;CALCULATE modifier&lt;/STRONG&gt; does exactly that. And by the way, ALL in this role is totally equivalent to REMOVEFILTERS.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 14:45:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/1692406#M34806</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-26T14:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a DAX function similar to ALLEXCEPT that removes just a single filter and keeps the others?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/1692696#M34810</link>
      <description>&lt;P&gt;removefilters allows to remove the filter on &lt;U&gt;one specific column&lt;/U&gt;.&amp;nbsp; I have the impression that the question is:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;"removes ONE filter column, but keep all the others."&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Although that is not what ALLExcept does, allexcept removes all filters except one:&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;A table with all filters removed except for the filters on the specified columns.&lt;/SPAN&gt;" -&amp;nbsp;&lt;A href="https://docs.microsoft.com/nl-nl/dax/allexcept-function-dax" target="_blank"&gt;https://docs.microsoft.com/nl-nl/dax/allexcept-function-dax&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 16:42:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/1692696#M34810</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2021-02-26T16:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a DAX function similar to ALLEXCEPT that removes just a single filter and keeps the others?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/1698627#M34964</link>
      <description>&lt;P&gt;Thanks to both of you for your suggestions.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;It took me another four hours to get to the solution, as REMOVEFILTERS or ALL where not usable in my DAX context.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But I found the solution for me was to use this DAX measure (pseudo code):&lt;BR /&gt;Measure1 = CALCULATE([Value], CALCULATETABLE(ALLSELECTED(Data), REMOVEFILTERS(Data[FilterColumnToRemove])))&lt;/P&gt;&lt;P&gt;This is much simpler than what I have use before and works with external filters and filters in the context of the visual in use.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Lars&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 13:32:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/1698627#M34964</guid>
      <dc:creator>lsteffens</dc:creator>
      <dc:date>2021-03-02T13:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a DAX function similar to ALLEXCEPT that removes just a single filter and keeps the others?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/1698878#M34980</link>
      <description>&lt;P&gt;In your pseudo code you are using removefilters?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 15:17:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/1698878#M34980</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2021-03-02T15:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a DAX function similar to ALLEXCEPT that removes just a single filter and keeps the others?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/3390003#M127789</link>
      <description>&lt;P&gt;Hi Lars, Thank you for this solution you saved my life.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 11:28:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-there-a-DAX-function-similar-to-ALLEXCEPT-that-removes-just-a/m-p/3390003#M127789</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-21T11:28:36Z</dc:date>
    </item>
  </channel>
</rss>

