<?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: CALCULATE with removefilters in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3595419#M138911</link>
    <description>&lt;P&gt;The issue you're experiencing is due to the way REMOVEFILTERS works in conjunction with the context of calculations in DAX. When you use REMOVEFILTERS(Table[ErrorType]), it removes the filters from the ErrorType column, but not from other columns or measures that may be affected by those filters.&lt;/P&gt;&lt;P&gt;Let's try to address your problem step by step.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;CalculateTotal Measure&lt;/STRONG&gt;: Since this measure doesn't need the ErrorType filter, it remains as it is.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;CalculateFailed Measure&lt;/STRONG&gt;: This measure needs to have the ErrorType filter removed when calculating. However, using REMOVEFILTERS as you've done may not work as expected because the context might still propagate from other parts of your model.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Test Measure&lt;/STRONG&gt;: You're trying to calculate the total and failed measures without the ErrorType filter.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;A potential solution could involve using the ALLSELECTED function combined with your calculations. Here's how you can modify the Test Measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Test Measure =&lt;BR /&gt;VAR TotalWithoutErrorTypeFilter =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;[CalculateTotal],&lt;BR /&gt;ALLSELECTED('Table'[ErrorType])&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;VAR FailedWithoutErrorTypeFilter =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;[CalculateFailed],&lt;BR /&gt;ALLSELECTED('Table'[ErrorType])&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;RETURN&lt;BR /&gt;TotalWithoutErrorTypeFilter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here, ALLSELECTED('Table'[ErrorType]) will remove the filter from ErrorType while retaining other filters (like the timestamp). This way, when you calculate your totals and failed counts, it will ignore the ErrorType filter but still respect other filters.&lt;/P&gt;&lt;P&gt;Ensure that you adjust the formula as per your model's specific requirements, but this approach should help you achieve the desired result.&lt;/P&gt;</description>
    <pubDate>Thu, 21 Dec 2023 05:25:56 GMT</pubDate>
    <dc:creator>123abc</dc:creator>
    <dc:date>2023-12-21T05:25:56Z</dc:date>
    <item>
      <title>CALCULATE with removefilters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3594196#M138853</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have requirement where in Card has to compute reliability as CalculateFailed/CalculateTotal .(Both Failed and Total are measures)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Slicer has below filters-&lt;/P&gt;&lt;P&gt;Errortype and Timestamp.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Calculate Failed Measure requires the Slicer filteration , however, CalculateTotal measure does not require the Errortype filter .&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have create another measure to test the results with removefiters but it is not returning correct values&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Slicer is build from&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;Table&lt;/SPAN&gt;&lt;SPAN&gt;[ErrorType]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CalculateTotal Measure &lt;SPAN&gt;&amp;nbsp;=&lt;/SPAN&gt; &lt;SPAN&gt;COUNTX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Operation]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"Create"&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[ID]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CalculateFailed Measure =&lt;/SPAN&gt; &lt;SPAN&gt;COUNTX&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;SPAN&gt;FILTER&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;'Table'&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;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[State]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;"Failed"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;Table&lt;/SPAN&gt;&lt;SPAN&gt;[Operation]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;"Create"&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Id]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;Test Measure =&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;A&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[CalculateTotal]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;REMOVEFILTERS&lt;/SPAN&gt;&lt;SPAN&gt;(Table&lt;/SPAN&gt;&lt;SPAN&gt;[ErrorType]&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;VAR&lt;/SPAN&gt; &lt;SPAN&gt;B&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[CalculateFailed]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;REMOVEFILTERS&lt;/SPAN&gt;&lt;SPAN&gt;(Table&lt;/SPAN&gt;&lt;SPAN&gt;[ErrorType]&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;RETURN&lt;/SPAN&gt; &lt;SPAN&gt;A&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;VAR A is considering Errotype Slicer values passed from Slicer, not sure why is it so. Can anyone pleaase suggest&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 20 Dec 2023 14:40:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3594196#M138853</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-12-20T14:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: CALCULATE with removefilters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3595419#M138911</link>
      <description>&lt;P&gt;The issue you're experiencing is due to the way REMOVEFILTERS works in conjunction with the context of calculations in DAX. When you use REMOVEFILTERS(Table[ErrorType]), it removes the filters from the ErrorType column, but not from other columns or measures that may be affected by those filters.&lt;/P&gt;&lt;P&gt;Let's try to address your problem step by step.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;CalculateTotal Measure&lt;/STRONG&gt;: Since this measure doesn't need the ErrorType filter, it remains as it is.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;CalculateFailed Measure&lt;/STRONG&gt;: This measure needs to have the ErrorType filter removed when calculating. However, using REMOVEFILTERS as you've done may not work as expected because the context might still propagate from other parts of your model.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Test Measure&lt;/STRONG&gt;: You're trying to calculate the total and failed measures without the ErrorType filter.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;A potential solution could involve using the ALLSELECTED function combined with your calculations. Here's how you can modify the Test Measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Test Measure =&lt;BR /&gt;VAR TotalWithoutErrorTypeFilter =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;[CalculateTotal],&lt;BR /&gt;ALLSELECTED('Table'[ErrorType])&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;VAR FailedWithoutErrorTypeFilter =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;[CalculateFailed],&lt;BR /&gt;ALLSELECTED('Table'[ErrorType])&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;RETURN&lt;BR /&gt;TotalWithoutErrorTypeFilter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here, ALLSELECTED('Table'[ErrorType]) will remove the filter from ErrorType while retaining other filters (like the timestamp). This way, when you calculate your totals and failed counts, it will ignore the ErrorType filter but still respect other filters.&lt;/P&gt;&lt;P&gt;Ensure that you adjust the formula as per your model's specific requirements, but this approach should help you achieve the desired result.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2023 05:25:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3595419#M138911</guid>
      <dc:creator>123abc</dc:creator>
      <dc:date>2023-12-21T05:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: CALCULATE with removefilters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3595640#M138924</link>
      <description>&lt;P&gt;thanks for your kind reply.. i have tried with suggested option , but no luck.do you have any running sample code ?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2023 06:55:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3595640#M138924</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-12-21T06:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: CALCULATE with removefilters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3596410#M138950</link>
      <description>&lt;P&gt;HI,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try below&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CalculateTotal Measure  = 
   COUNTX(
      FILTER(
         all('Table'[errortype],'Table'[Operation],'Table'[ID]),
         'Table'[Operation]="Create"
      ),
      'Table'[ID]
   )

 

CalculateFailed Measure = 
   COUNTX(
       FILTER(
        all('Table'[errortype],'Table'[Operation],'Table'[ID],'Table'[State])
        'Table'[State] = "Failed" &amp;amp;&amp;amp; Table[Operation] = "Create"
       ),
     'Table'[Id]
   )

&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 21 Dec 2023 10:37:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3596410#M138950</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2023-12-21T10:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: CALCULATE with removefilters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3601391#M139153</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You seem to want to calculate CalculateFailed/CalculateTotal, and CalculateTotal is not affected by slicers, here is the DAX we offer:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the virtual table we created&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The "CalculateTotal" and "CalculateFailed" measures you defined seem to be correct.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CalculateTotal = COUNTX(FILTER('Table', 'Table'[operation]="create"), 'Table'[id])&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CalculateFailed = COUNTX(
    FILTER(
        'Table',
        'Table'[state] = "fail" &amp;amp;&amp;amp; 'Table'[operation] = "create"),'Table'[id])

&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The modified Test Measure is as follows, and after the slicer is applied, Total is not affected&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Test Measure = 
    VAR TotalWithoutErrorType = CALCULATE([CalculateTotal], ALL('Table'[error type]))
    VAR FailedWithAllFilters = [CalculateFailed]
    RETURN TotalWithoutErrorType
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure to calculate reliability, here are the results&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;result = [CalculateFailed] / [Test Measure]&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're still having problems, provide some dummy data and the desired outcome. It is best presented in the form of a table.&lt;/P&gt;
&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Nono Chen&lt;/P&gt;
&lt;P&gt;If this &lt;STRONG&gt;&lt;EM&gt;post&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;helps, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Dec 2023 01:14:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3601391#M139153</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-12-26T01:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: CALCULATE with removefilters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3601559#M139162</link>
      <description>&lt;P&gt;Hello&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;, thanks for taking time and helping ..&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried the same details.. but when I&amp;nbsp; am returning Var for total wherein filter is not needed , is returning same result as that of applying filter. I am really going clueless why is this so&lt;/P&gt;&lt;P&gt;Var A returning 7 for Measure wherein slicer is not needed and is still in effect( even&amp;nbsp; though ALL is used)&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Var B , for Failed measure is also returning same result with slicer is in effect and is good&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Dec 2023 05:11:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3601559#M139162</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-12-26T05:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: CALCULATE with removefilters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3603308#M139217</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on your question, we guess that you may have an impact on filtering because you have table relationships.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the method we provide, "all" only removes the filter of "error type" in the current table. If you have an “error type” in table B, there is a relationship between the two tables, and your slicer selects “error type” in table B, the same will have an impact.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can try removing the "error type" to avoid the above reasons&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Test Measure = 
    VAR TotalWithoutErrorType = CALCULATE([CalculateTotal], ALL('Table'))
    VAR FailedWithAllFilters = [CalculateFailed]
    RETURN TotalWithoutErrorType&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin-bottom: 6.0pt;"&gt;Best Regards,&lt;/P&gt;
&lt;P style="margin-bottom: 6.0pt;"&gt;Nono Chen&lt;/P&gt;
&lt;P style="margin-bottom: 6.0pt;"&gt;If this &lt;STRONG&gt;&lt;I&gt;post&lt;/I&gt;&lt;/STRONG&gt;&amp;nbsp;helps, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P style="margin-bottom: 6.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2023 09:50:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CALCULATE-with-removefilters/m-p/3603308#M139217</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-12-27T09:50:03Z</dc:date>
    </item>
  </channel>
</rss>

