<?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 Understanding Expanded Tables: removing filters with ALL() in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2156630#M49821</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Please consider the following measures in this simple scenario: Product and Sales tables, with a one-to-many relationship.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;NumOfProducts = COUNT( Product[Product Name] )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;NumOfAllProducts = CALCULATE ( [NumOfProducts], ALL ( Sales ) )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why does the NumOfAllProducts measure return the total number of products regardless of the color filtering?&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;Color is an attribute of the Product table. Yes, it does also belong to the expanded table of Sales, but here we are not using the expanded tables of sales, since we are only removing filters from it. Why does this affect the behavior/outcome of the measure?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;If it was using the expanded table of Sales the total number of products would be different, it would only show the number of products with Sales (it is less than the total)&lt;BR /&gt;&lt;BR /&gt;What expanded table is this measure using?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I believe that this ALL() filter should not affect the measure in this case. What am I understanding wrong?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Oct 2021 21:29:33 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-10-26T21:29:33Z</dc:date>
    <item>
      <title>Understanding Expanded Tables: removing filters with ALL()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2156630#M49821</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Please consider the following measures in this simple scenario: Product and Sales tables, with a one-to-many relationship.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;NumOfProducts = COUNT( Product[Product Name] )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;NumOfAllProducts = CALCULATE ( [NumOfProducts], ALL ( Sales ) )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why does the NumOfAllProducts measure return the total number of products regardless of the color filtering?&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;Color is an attribute of the Product table. Yes, it does also belong to the expanded table of Sales, but here we are not using the expanded tables of sales, since we are only removing filters from it. Why does this affect the behavior/outcome of the measure?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;If it was using the expanded table of Sales the total number of products would be different, it would only show the number of products with Sales (it is less than the total)&lt;BR /&gt;&lt;BR /&gt;What expanded table is this measure using?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I believe that this ALL() filter should not affect the measure in this case. What am I understanding wrong?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Oct 2021 21:29:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2156630#M49821</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-26T21:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding Expanded Tables: removing filters with ALL()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2156657#M49822</link>
      <description>&lt;P&gt;This is discussed here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.sqlbi.com/articles/managing-all-functions-in-dax-all-allselected-allnoblankrow-allexcept/" target="_blank"&gt;https://www.sqlbi.com/articles/managing-all-functions-in-dax-all-allselected-allnoblankrow-allexcept/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"&lt;FONT color="#808080"&gt;&lt;EM&gt;When&amp;nbsp;&lt;A class="dax-fn dax-guide-tooltip tooltipstered" href="https://dax.guide/calculate/?aff=sqlbi" data-tooltip-content="#tooltip_dax_fn_calculate" target="_blank"&gt;CALCULATE&lt;/A&gt;&amp;nbsp;evaluates the filter in the denominator, it finds&amp;nbsp;&lt;A class="dax-fn dax-guide-tooltip tooltipstered" href="https://dax.guide/all/?aff=sqlbi" data-tooltip-content="#tooltip_dax_fn_all" target="_blank"&gt;ALL&lt;/A&gt;.&amp;nbsp;&lt;A class="dax-fn dax-guide-tooltip tooltipstered" href="https://dax.guide/all/?aff=sqlbi" data-tooltip-content="#tooltip_dax_fn_all" target="_blank"&gt;ALL&lt;/A&gt;&amp;nbsp;requires the removal of any filters from the expanded Sales table, which includes Product[Color]. Thus, the filter is removed but no result is ever returned to&amp;nbsp;&lt;A class="dax-fn dax-guide-tooltip tooltipstered" href="https://dax.guide/calculate/?aff=sqlbi" data-tooltip-content="#tooltip_dax_fn_calculate" target="_blank"&gt;CALCULATE&lt;/A&gt;. Because no result is returned, the expanded Sales table is not used as a filter by&amp;nbsp;&lt;A class="dax-fn dax-guide-tooltip tooltipstered" href="https://dax.guide/calculate/?aff=sqlbi" data-tooltip-content="#tooltip_dax_fn_calculate" target="_blank"&gt;CALCULATE&lt;/A&gt;.&lt;/EM&gt;&lt;/FONT&gt;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since Product[Color] is part of the expanded Sales table, the calculation removes the only filter we have. Since NumberOfProducts is defined as a distinct count of Product[ProductName] and there are no remaining filters, we get all of the products, not just the ones in Sales.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Remember, when used like this, the only thing ALL does is&amp;nbsp;&lt;EM&gt;remove&lt;/EM&gt; filters, not add any.&lt;/P&gt;
&lt;P&gt;"&lt;FONT color="#808080"&gt;&lt;EM&gt;In the very specific case of&amp;nbsp;&lt;A class="dax-fn dax-guide-tooltip tooltipstered" href="https://dax.guide/calculate/?aff=sqlbi" data-tooltip-content="#tooltip_dax_fn_calculate" target="_blank"&gt;CALCULATE&lt;/A&gt;&amp;nbsp;filters – and only in this specific case –&amp;nbsp;&lt;A class="dax-fn dax-guide-tooltip tooltipstered" href="https://dax.guide/all/?aff=sqlbi" data-tooltip-content="#tooltip_dax_fn_all" target="_blank"&gt;ALL&lt;/A&gt;&amp;nbsp;is not used to retrieve values from a table. Instead,&amp;nbsp;&lt;A class="dax-fn dax-guide-tooltip tooltipstered" href="https://dax.guide/all/?aff=sqlbi" data-tooltip-content="#tooltip_dax_fn_all" target="_blank"&gt;ALL&lt;/A&gt;&amp;nbsp;is used to remove filters from the filter context.&lt;/EM&gt;&lt;/FONT&gt;"&lt;/P&gt;</description>
      <pubDate>Tue, 26 Oct 2021 21:42:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2156657#M49822</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-10-26T21:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding Expanded Tables: removing filters with ALL()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2156663#M49823</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks for your answer.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I don't understand this reasoning: &lt;EM&gt;Since NumberOfProducts is defined as a distinct count of Product[ProductName] and there are no remaining filters, we get all of the products, not just the ones in Sales.&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;Maybe I'm understanding wrong fundamental ideas.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;What is the difference between counting products from the expanded table of Sales, and counting products&amp;nbsp;using the expanded tables of Sales as CALCULATE filter?&lt;BR /&gt;&lt;BR /&gt;I thought that using it as a filter in CALCULATE only results in using that expanded table to compute the measure (and getting a DISTINCT COUNT of the values of &lt;EM&gt;rows&lt;/EM&gt; that are referenced, like a Sales LEFT OUTER JOIN Product) .&lt;BR /&gt;&lt;BR /&gt;With ALL() removing filters, it looks like a Sales FULL OUTER JOIN Product.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I know that is dangerous to think in terms of SQL concepts.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Oct 2021 22:01:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2156663#M49823</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-26T22:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding Expanded Tables: removing filters with ALL()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2156702#M49827</link>
      <description>&lt;P&gt;The Product table has more products than exist in Sales and the NumOfProducts counts the rows in Product that are the current filter context. So, without any filter context, we get all of the products regardless of if they exist in Sales.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As an argument in CALCULATE like this, ALL removes filters, nothing else. The visual introduces the Product[Color] as filter context for each row but since this column is in the expanded Sales table, it gets removed by ALL ( Sales ) and there are no remaining filters, thus nothing limiting Product to only the products in Sales. The actual Sales table itself is never part of the query in this example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In practice, you would probably write the measure as&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;NumOfProducts = CALCULATE ( [NumOfProducts], ALL ( Product ) )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;to avoid confusion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Everything in DAX is about columns and filters. Tables are important concepts but not as fundamental.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Oct 2021 22:43:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2156702#M49827</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-10-26T22:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding Expanded Tables: removing filters with ALL()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2158476#M49890</link>
      <description>&lt;P&gt;Thanks again for your patience.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I understand what you mean, but still there is something that prevents me to 'click' it all together.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The expanded table of Sales contains Product columns. When applying ALL(Sales) we remove filters from the Product derived column, then, in this context, we always count all posible products in Product.&amp;nbsp;Fine.&lt;BR /&gt;Are these Product columns the same that belong to the Sales expanded table? Is there any difference? Are they different objects? If they are the same, why are there fewer products in the Sales expanded table?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I mean, I have a bit of confusion here. Why it counts all possible products when using ALL(Sales), so using the expanded table of Sales. But then when you use the expanded table of Sales as a CALCULATE filter there are fewer objects. I know that are the only that have references in Sales table, but one more time, it is like it has two behavious, as a Sales LEFT OUTER JOIN Product and then as a Sales FULL OUTER JOIN Product.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;And, could you explain what rules does this measure follow?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;Test = CALCULATE(COUNTROWS ( 'Product Subcategory') , Sales, ALL('Sales'))&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;Is this nonsense? It behaves like ALL('Sales') has no effect. The outcome keeps being affected by Product columns slicers, etc.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks one more time and excuse my stupidity.&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Oct 2021 13:49:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2158476#M49890</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-27T13:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding Expanded Tables: removing filters with ALL()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2158711#M49899</link>
      <description>&lt;P&gt;Your measure expression is not nonsense. The ALL(Sales) part removes filter context but you also have Sales as a table filter, which limits the rows of Product to ones corresponding to Sales (or whatever subset of Sales is in the current filter context).&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;The wall you are running into is trying to interpret ALL(Sales) as a table at all (it can be, but isn't in this context). It doesn't correspond to any kind of join of Sales and Product. It doesn't represent anything except instructions to remove certain filters.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Here's the relevant part of the article I referenced earlier:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;This formula CALCULATE ( [SalesAmount], ALL ( Product[Color] ) ) reads as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;ALL returns a table containing all the colors; this table represents the valid colors to be used in the new filter context of CALCULATE. Forcing all the colors to be visible is equivalent to removing any and all filters from the Color column.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This description consists of two sentences: both are wrong. This is not to say that the description is completely wrong. It is accurate most of the time, but not always. The correct description of the behavior of ALL in the PctOverColors measure above is much simpler indeed:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;ALL removes any active filters from the Color column.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;In the correct description there is no statement about the result of ALL – in fact, it does not return anything – and there is no equivalence between a table with all values and the removal of a filter. The reality is much simpler: filters are removed. At first sight, it looks like a very pedantic detail. However, this small difference may yield very different results when used in more complex DAX expressions.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You seem to be understanding things more like the first (incorrect) description.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;The expanded Sales table uses LEFT OUTER JOIN for tables it has a many-to-one relationship with (see &lt;A href="https://www.sqlbi.com/articles/expanded-tables-in-dax/" target="_blank"&gt;here&lt;/A&gt;). ALL(Sales) is not an expanded table but it does remove all active filters on the expanded Sales table.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;A couple more selected quotes:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Using ALL ( Sales ) does not mean, “filter using all the rows in Sales”. It means, “remove any filters from Sales"&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;It is worth noting that all the tables used as filter arguments are, indeed, expanded tables. Therefore, the action of removing filters impacts not only the base table but the entire expanded table. ALL ( Sales ) acts as REMOVEFILTERS on the expanded version of Sales, removing filters from the table and from all related dimension.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Wed, 27 Oct 2021 15:36:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2158711#M49899</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-10-27T15:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding Expanded Tables: removing filters with ALL()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2158928#M49911</link>
      <description>&lt;P&gt;I understand ALL(Sales) doesn't return any table, and that only removes filters.&amp;nbsp;&lt;BR /&gt;The article mentions that it removes filters from the Sales base table and the derived tables, which includes Product table.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;If I count then the products of the table using NumOfAllProducts I find all the products. But if, in another measure&amp;nbsp;&lt;SPAN&gt;—&lt;/SPAN&gt; CALCULATE( [NumOfProducts], Sales)&amp;nbsp;&lt;SPAN&gt;—&lt;/SPAN&gt; I use the Sales expanded table as a filter and count the products, I only find products that have sales.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I think I can group all my doubts: why does this happens given that in both measures we are counting rows of the same object, the derived Product table?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Oct 2021 17:54:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2158928#M49911</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-27T17:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding Expanded Tables: removing filters with ALL()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2159046#M49918</link>
      <description>&lt;P&gt;It's not the same object. In one case, we are counting rows in the Product table without any filters, and in the other, we are counting only the rows that correspond to Sales. It's like counting Product versus counting Product INNER JOIN Sales.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Oct 2021 19:20:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2159046#M49918</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-10-27T19:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding Expanded Tables: removing filters with ALL()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2161970#M49987</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Measure calculates with current row context, when you add all to remove all filters, the context becomes the all table, so it is no long calculate&amp;nbsp;based on the current row context. Instead, the result is based on the entire&amp;nbsp;table rows. Hope this makes sense.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Paul Zheng _ Community Support Team&lt;BR /&gt;If this post helps, please Accept it as the solution 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;</description>
      <pubDate>Fri, 29 Oct 2021 01:49:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Understanding-Expanded-Tables-removing-filters-with-ALL/m-p/2161970#M49987</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-29T01:49:11Z</dc:date>
    </item>
  </channel>
</rss>

