<?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: Why filter does not propogate in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4659777#M178431</link>
    <description>&lt;P&gt;Thank you for your reply but you completely lost me now.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 20 Apr 2025 06:48:17 GMT</pubDate>
    <dc:creator>mp390988</dc:creator>
    <dc:date>2025-04-20T06:48:17Z</dc:date>
    <item>
      <title>Why filter does not propogate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4659610#M178418</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have this model:&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;&lt;P&gt;I then built this report with 3 seperate visuals but don't understand why the card visual does not filter to show count = 3. It still shows 606. I thought all visuals on the same page in power bi sync each other.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have I not understood properly?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Apr 2025 21:47:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4659610#M178418</guid>
      <dc:creator>mp390988</dc:creator>
      <dc:date>2025-04-19T21:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Why filter does not propogate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4659613#M178419</link>
      <description>&lt;P&gt;Hi mp390988,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Go to the Model view in Power BI.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Check if there's a relationship between:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FactInternetSales[ProductKey]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and DimProduct[ProductKey]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it's missing, create a 1-to-many relationship from DimProduct to FactInternetSales.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ensure the card visual is using filtered context, e.g., by changing the measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Instead of using:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Count of EnglishProductName = COUNT(DimProduct[EnglishProductName])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Products Sold Count =&amp;nbsp;&lt;/P&gt;&lt;P&gt;CALCULATE(&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; DISTINCTCOUNT(FactInternetSales[ProductKey])&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Summary:&lt;/P&gt;&lt;P&gt;Visuals sync only when their tables are connected in the model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your card visual is not aware of the filters because it's disconnected from the customer or sales tables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Fix it by creating proper relationships and using measures that respect filter context.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Apr 2025 22:21:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4659613#M178419</guid>
      <dc:creator>rosha_rosha</dc:creator>
      <dc:date>2025-04-19T22:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: Why filter does not propogate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4659669#M178423</link>
      <description>&lt;P&gt;Filters only progate from one to many. So will no travel upstream to your dim product table. That is unless you have a bidirectional relationships, which is not best practice. You can update the measure as follows&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Count of EnglishProductName =&lt;/P&gt;&lt;P&gt;CALCULATE(&lt;/P&gt;&lt;P&gt;COUNTROWS(&lt;/P&gt;&lt;P&gt;VALUES(DimProduct[EnglishProductName])&lt;/P&gt;&lt;P&gt;),&lt;/P&gt;&lt;P&gt;CROSSFILTER(&amp;nbsp;&lt;/P&gt;&lt;P&gt;DimProduct[ProductKey],&lt;/P&gt;&lt;P&gt;FactInternetSales[ProductKey],&lt;/P&gt;&lt;P&gt;Both)&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will enable bidirectional relationships for that measure allowing the filter to propogate upstream&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Apr 2025 01:04:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4659669#M178423</guid>
      <dc:creator>Deku</dc:creator>
      <dc:date>2025-04-20T01:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: Why filter does not propogate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4659727#M178427</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your explanation. I understand filters propagate from the 1 side to the many side.&lt;/P&gt;&lt;P&gt;But now I don't&lt;SPAN&gt;&amp;nbsp;understand why inside the first visual products are being filtered respective of customer name?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would expect a complete list of product name across all customers as there is no relationship between Customer and Products and there is not a 1 to many relationship between Customer and Products.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i remember posting a question a while back regarding customer count per year. The model was the same one as in this question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;then I tried to show count of customers per year but it was repeating the same values:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;So I would have expected the same behaviour in my very first visual where I have a matrix showing customer name and underneath each customer name I have product name. I would have expected repeating values of all product names just like how I'm seeing repeating count of customers for each year.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Apr 2025 06:10:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4659727#M178427</guid>
      <dc:creator>mp390988</dc:creator>
      <dc:date>2025-04-20T06:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: Why filter does not propogate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4659775#M178430</link>
      <description>&lt;P&gt;The underlying summarizecolumn is different for the two. In the matrix is it performs a autoexist from the fact table. This doesn't occur with the measure. If you had measure in the matrix for count of year you would see 6 for every combo of product and customer&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Apr 2025 06:38:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4659775#M178430</guid>
      <dc:creator>Deku</dc:creator>
      <dc:date>2025-04-20T06:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Why filter does not propogate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4659777#M178431</link>
      <description>&lt;P&gt;Thank you for your reply but you completely lost me now.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Apr 2025 06:48:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4659777#M178431</guid>
      <dc:creator>mp390988</dc:creator>
      <dc:date>2025-04-20T06:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Why filter does not propogate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4660436#M178468</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="569801" data-lia-user-login="mp390988" class="lia-mention lia-mention-user"&gt;mp390988&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to Microsoft Fabric Community Forum.&lt;/P&gt;
&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1231947" data-lia-user-login="Deku" class="lia-mention lia-mention-user"&gt;Deku&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1257571" data-lia-user-login="rosha_rosha" class="lia-mention lia-mention-user"&gt;rosha_rosha&lt;/a&gt;&amp;nbsp;Thank you for your quick response.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you expand a customer in the matrix visual, Power BI filters the data based on that customer using the relationship between &lt;STRONG&gt;DimCustomer&lt;/STRONG&gt; and &lt;STRONG&gt;FactInternetSales&lt;/STRONG&gt;. This filter flows into the fact table and restricts the rows to only those related to that customer. From there, Power BI identifies the &lt;STRONG&gt;ProductKeys&lt;/STRONG&gt; associated with that customer's transactions. Using those keys, it retrieves the corresponding product names from &lt;STRONG&gt;DimProduct&lt;/STRONG&gt;. Even though there’s no direct relationship from &lt;STRONG&gt;DimCustomer&lt;/STRONG&gt; to &lt;STRONG&gt;DimProduct&lt;/STRONG&gt;, Power BI doesn’t need one — it leverages the fact table to bridge the two. That’s why you only see the products actually purchased by each customer, rather than a full list of all products.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;B Manikanteswara Reddy&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 06:08:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4660436#M178468</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-21T06:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Why filter does not propogate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4666680#M178747</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="569801" data-lia-user-login="mp390988" class="lia-mention lia-mention-user"&gt;mp390988&lt;/a&gt;&amp;nbsp;,&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;B Manikanteswara Reddy&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 12:11:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4666680#M178747</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-24T12:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Why filter does not propogate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4674392#M179019</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="569801" data-lia-user-login="mp390988" class="lia-mention lia-mention-user"&gt;mp390988&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?&lt;/P&gt;
&lt;P&gt;If our response addressed, please mark it as &lt;FONT color="#339966"&gt;&lt;STRONG&gt;&lt;I&gt;Accept as &lt;/I&gt;&lt;/STRONG&gt;&lt;STRONG&gt;solution&lt;/STRONG&gt;&lt;/FONT&gt; and click Yes if you found it helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;B Manikanteswara Reddy&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 10:05:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4674392#M179019</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-30T10:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: Why filter does not propogate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4679808#M179252</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="569801" data-lia-user-login="mp390988" class="lia-mention lia-mention-user"&gt;mp390988&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I ask if you have gotten this issue resolved?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it is solved, please mark the helpful reply or share your solution and &lt;FONT color="#008000"&gt;&lt;STRONG&gt;&lt;I&gt;accept it as solution&lt;/I&gt;&lt;/STRONG&gt;,&lt;/FONT&gt; it will be helpful for other members of the community who have similar problems as yours to solve it faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;B Manikanteswara Reddy&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 08:56:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Why-filter-does-not-propogate/m-p/4679808#M179252</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-05T08:56:29Z</dc:date>
    </item>
  </channel>
</rss>

