<?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: Second example of KEEPFILTERS on www.dax.do in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4352989#M172847</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="908542" data-lia-user-login="PB12" class="lia-mention lia-mention-user"&gt;PB12&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SachinNandanwar and johnt75 have both provided detailed explanations regarding your problem. If you find their responses helpful in understanding how the KEEPFILTERS function works in the test example, please consider marking their replies as the solutions. Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
    <pubDate>Tue, 07 Jan 2025 07:58:15 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-01-07T07:58:15Z</dc:date>
    <item>
      <title>Second example of KEEPFILTERS on www.dax.do</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4351180#M172793</link>
      <description>&lt;P&gt;Hello. I don't udnerstand how they get the numbers of [SalesX] in the table visual in the the second example of KEEPFILTERS on &lt;A href="http://www.dax.do?" target="_blank"&gt;www.dax.do?&lt;/A&gt; Here is the link:&amp;nbsp;&lt;A href="https://dax.do/RvposJvoHWnco0/" target="_blank"&gt;https://dax.do/RvposJvoHWnco0/&lt;/A&gt;&amp;nbsp; Could someone explain? Best regards&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 01:51:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4351180#M172793</guid>
      <dc:creator>PB12</dc:creator>
      <dc:date>2025-01-06T01:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Second example of KEEPFILTERS on www.dax.do</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4351616#M172807</link>
      <description>&lt;P&gt;So SUMx is an iterator and runs in a row context and causes context transition.In your example,there is a filter on { ( "CY 2008", "Red" ), ( "CY 2007", "White" ) }.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Due to context transition, the measure MEASURE Sales[SalesX] will not respect the filter YearsAndColor as by default any context transition dont respect any existing filters and will be oveeriden .That is the default nature of Context transition i.e to override any existing filters.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But incase you want the filters to respected that were applied before the context transition you have to use KEEPFILTERS.KEEPFILTERS mainatin the existing filters that were applied prior to the context transition&lt;/P&gt;&lt;P&gt;The behavior is not typical only with iterators.You can observe the same behavior with CALCULATE as well.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I created two CALCULATE functions in the same example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;  MEASURE Sales[SalesC] =
        CALCULATE ([Sales Amount],VALUES('Product'[Color]))
    MEASURE Sales[SalesC Keep] =
        CALCULATE ([Sales Amount],KEEPFILTERS(VALUES('Product'[Color])))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;and used KEEPFILTRS with CALCULATE in one of them to respect the existing filters prior to the context transition. CALCULATE itself causes the context transition.&lt;BR /&gt;&lt;BR /&gt;I have arrowed the two CALCULATE functions I created and you can see, they also project the same behavior like the iterator SUMX&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;P.S : I hope I am correct in this explaination and other DAX gurus on this forum could correct me in my understanding.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 08:52:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4351616#M172807</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2025-01-06T08:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Second example of KEEPFILTERS on www.dax.do</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4351628#M172808</link>
      <description>&lt;P&gt;Hello Sachin. Thank you for taking your time to have a look at this post. Is the number of [SalesX] showing:&lt;/P&gt;&lt;P&gt;-red in 2008&lt;/P&gt;&lt;P&gt;-red in 2007&lt;/P&gt;&lt;P&gt;-white in 2008&lt;/P&gt;&lt;P&gt;-white in 2007&lt;/P&gt;&lt;P&gt;- or a completely different combination. If this is the case, what is the combination then?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 09:04:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4351628#M172808</guid>
      <dc:creator>PB12</dc:creator>
      <dc:date>2025-01-06T09:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Second example of KEEPFILTERS on www.dax.do</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4351663#M172809</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="777262" data-lia-user-login="SachinNandanwar" class="lia-mention lia-mention-user"&gt;SachinNandanwar&lt;/a&gt;&amp;nbsp;your explanation is mostly correct, but the iterator SUMX does not by itself cause context transition. Calling the [Sales Amount] measure is what causes the context transition, that happens any time a measure is called.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 09:32:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4351663#M172809</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-01-06T09:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Second example of KEEPFILTERS on www.dax.do</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4351773#M172811</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;.Oh...I always used do think that SUMX by its inherent nature causes context transition.This is because as SUMX is an iterator and it creates a row context when it iterates across each row and the context then gets converted to a filter context when evaluating the expression in SUMX.&lt;BR /&gt;&lt;BR /&gt;I did check the dax guide&amp;nbsp;&lt;A href="https://dax.guide" target="_blank"&gt;https://dax.guide&lt;/A&gt;&amp;nbsp;and it confirms your claim&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I have one follow up question on this.&lt;BR /&gt;In the example [Sales Amount] is a measure used in the SUMX function and what if it is replaced by a column .Will it not cause a context transition&amp;nbsp; ? If it does not then how would it aggregate across unique sets/groups in the data.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 10:49:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4351773#M172811</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2025-01-06T10:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Second example of KEEPFILTERS on www.dax.do</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4351824#M172813</link>
      <description>&lt;P&gt;If [Sales Amount] were replaced by a column reference then it would not cause context transition, and the calculation would happen in the row context only. If we take the definition of [Sales Amount] itself&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sales Amount =
SUMX ( Sales, Sales[Quantity] * Sales[Net Price] )
&lt;/LI-CODE&gt;
&lt;P&gt;Because there is no call to CALCULATE, and no measure reference, then context transition does not happen. So [Sales Amount] iterates over all rows in Sales which are visible in the current filter context, and for each row it performs the multiplication.&lt;/P&gt;
&lt;P&gt;Perhaps a better example is ADDCOLUMNS. ADDCOLUMNS is an iterator, like SUMX, but it does not by itself force context transition. If you execute&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;EVALUATE
ADDCOLUMNS (
    SUMMARIZE ( Sales, Product[Brand], Product[Color] ),
    "@sales", SUMX ( Sales, Sales[Quantity] * Sales[Net Price] )
)
&lt;/LI-CODE&gt;
&lt;P&gt;you will see all combinations of brand and colour, but they all produce exactly the same number in [@sales] because the row context from ADDCOLUMNS is not converted into a filter context.&lt;/P&gt;
&lt;P&gt;If you wrap the SUMX inside CALCULATE then context transition is performed and you get the numbers you would expect.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 11:19:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4351824#M172813</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-01-06T11:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Second example of KEEPFILTERS on www.dax.do</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4352006#M172819</link>
      <description>&lt;P&gt;Thank you&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;very much for the clarifications .They have been an eye opener.I now understand that as the [Sales Amount] is a measure, it causes the context transition for SUMX and the context transition does not happen because of SUMX itself.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my final follow up question and I promise I wont bug you anymore &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Lets take this mesaure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MEASURE Sales = SUMX ( VALUES ( Product[Color] ), [Sales Amount] )&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Now in case I change the measure to something like this just for sake of the discussion&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;MEASURE Sales = SUMX ( VALUES ( Product[Color] ),SUM(Sales[Quantity]))&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;will it cause a context transition ? AFAIK(I may be wrong), aggregate functions execute under the current filter context. So what will be the context here ? given that iterators execute in row context and aggregate functions executes in filter context.I understand that aggregate function themselves dont cause context transition.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;and if I create a seperate measure for SUM(Sales[Quantity]) say SUM_QTY and use it in the measure something like MEASURE Sales = SUMX ( VALUES ( Product[Color] ),SUM_QTY),will this cause a context transition.I would assume it would..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it fair to say that any measure that uses a function(aggregate or time intelligence)if invoked in an interator will cause a context transition.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I tried your ADDCOLUMNS example and you were spot on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;EVALUATE
ADDCOLUMNS (
SUMMARIZE ( Sales, Product[Brand], Product[Color] ),
"@sales", SUMX ( Sales, Sales[Quantity] * Sales[Net Price] )
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 14:20:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4352006#M172819</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2025-01-06T14:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Second example of KEEPFILTERS on www.dax.do</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4352060#M172823</link>
      <description>&lt;P&gt;If you change the measure to&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MEASURE Sales = SUMX ( VALUES ( Product[Color] ),SUM(Sales[Quantity]))&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;then there will be no context transition for the SUM.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;When the measure itself was invoked there would be context transition, which could affect which values of Product[Color] were visible. The SUMX would then iterate over those visible values, but that iteration wouldn't really matter as there is no CALCULATE to force context transition.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you create a measure like&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MEASURE Sales = SUMX ( VALUES ( Product[Color] ),[SUM_QTY])&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;then there would be context transition so you would get the sum for the appropriate colour.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Whenever a measure is called there is always an implicit CALCULATE to force context transition. This is independent of what the measure does, whether it uses an aggregator or not. There is always a CALCULATE.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you call an aggregator rather than a measure, then there is never context transition unless you explicitly call CALCULATE.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 15:07:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4352060#M172823</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-01-06T15:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Second example of KEEPFILTERS on www.dax.do</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4352989#M172847</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="908542" data-lia-user-login="PB12" class="lia-mention lia-mention-user"&gt;PB12&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SachinNandanwar and johnt75 have both provided detailed explanations regarding your problem. If you find their responses helpful in understanding how the KEEPFILTERS function works in the test example, please consider marking their replies as the solutions. Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 07:58:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4352989#M172847</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-07T07:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Second example of KEEPFILTERS on www.dax.do</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4353081#M172849</link>
      <description>&lt;P&gt;Its showing the [Sales Amount] ignoring the filters ("CY 2008", "Red" ), ( "CY 2007", "White" ).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Lets take example of product color white. As explained by &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt; the measure SUMX ( VALUES ( Product[Color] ), [Sales Amount] ) causes the context transition and executes under the filter context and returns the [Sales Amount] for White ignoring the filter for year 2007 which is the original filter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This happened because the context transition nullified the original filter context and only the current filter context which is White is applied to return the [Sales Amount]. Now to prevent this from happening MEASURE Sales[SalesX Keep] uses KEEPFILTERS that maintains the original filter context i.e. ( "CY 2007", "White" ) for the color white and ("CY 2008", "Red" ) for the color red.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can view the model here : &lt;A href="https://dax.do/RvposJvoHWnco0/diagram/" target="_blank"&gt;https://dax.do/RvposJvoHWnco0/diagram/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 08:47:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4353081#M172849</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2025-01-07T08:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Second example of KEEPFILTERS on www.dax.do</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4353090#M172850</link>
      <description>&lt;P&gt;Thank you very much&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;for your time and the detailed explaination.&lt;BR /&gt;&lt;BR /&gt;Greatly appreciate it..&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 08:50:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4353090#M172850</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2025-01-07T08:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: Second example of KEEPFILTERS on www.dax.do</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4353173#M172851</link>
      <description>&lt;P&gt;Hello v-yiruan-msft. How should I proceed if there is no satisfactory explanation to the question?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 09:52:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4353173#M172851</guid>
      <dc:creator>PB12</dc:creator>
      <dc:date>2025-01-07T09:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Second example of KEEPFILTERS on www.dax.do</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4353429#M172857</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="908542" data-lia-user-login="PB12" class="lia-mention lia-mention-user"&gt;PB12&lt;/a&gt;&amp;nbsp;,If you have an understanding of row/filter context only then it would be easy to understand the explaination provided.&lt;BR /&gt;&lt;BR /&gt;Did you get a chance to go through &lt;A href="https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4353081/highlight/true#M172849" target="_self"&gt;this&lt;/A&gt; ?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 12:38:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Second-example-of-KEEPFILTERS-on-www-dax-do/m-p/4353429#M172857</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2025-01-07T12:38:39Z</dc:date>
    </item>
  </channel>
</rss>

