<?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 Filter down Data in a Fact table Power Query in Power Query</title>
    <link>https://community.fabric.microsoft.com/t5/Power-Query/Filter-down-Data-in-a-Fact-table-Power-Query/m-p/4608280#M148024</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need some help/suggestions please.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a fact table called Customer Invoice (Which is Imported), but i don't want to load in all the sales data as its not needeed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only want to see Data that is contained in my Dimensions table 'StarCustomer'[CustomerCode] (as i have slimmed down the data just to see sales from new customers). My Customer Invoice table does have [CustomerCode] as a column. I have tried an inner merge but it just fails or won't load. Is there a way of using parameters as i do with RangeStart &amp;amp; RangeEnd as i have an imcremental refresh setup on this model.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Or any other method i could try. Any help is much appreciated as i need a method i can use for the future when slimming down data that i don't need from a fact table.&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;&lt;P&gt;Michael&lt;/P&gt;</description>
    <pubDate>Thu, 13 Mar 2025 09:31:13 GMT</pubDate>
    <dc:creator>MVenables</dc:creator>
    <dc:date>2025-03-13T09:31:13Z</dc:date>
    <item>
      <title>Filter down Data in a Fact table Power Query</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Filter-down-Data-in-a-Fact-table-Power-Query/m-p/4608280#M148024</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need some help/suggestions please.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a fact table called Customer Invoice (Which is Imported), but i don't want to load in all the sales data as its not needeed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only want to see Data that is contained in my Dimensions table 'StarCustomer'[CustomerCode] (as i have slimmed down the data just to see sales from new customers). My Customer Invoice table does have [CustomerCode] as a column. I have tried an inner merge but it just fails or won't load. Is there a way of using parameters as i do with RangeStart &amp;amp; RangeEnd as i have an imcremental refresh setup on this model.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Or any other method i could try. Any help is much appreciated as i need a method i can use for the future when slimming down data that i don't need from a fact table.&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;&lt;P&gt;Michael&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 09:31:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Filter-down-Data-in-a-Fact-table-Power-Query/m-p/4608280#M148024</guid>
      <dc:creator>MVenables</dc:creator>
      <dc:date>2025-03-13T09:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filter down Data in a Fact table Power Query</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Filter-down-Data-in-a-Fact-table-Power-Query/m-p/4608319#M148026</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="711451" data-lia-user-login="MVenables" class="lia-mention lia-mention-user"&gt;MVenables&lt;/a&gt;&amp;nbsp; Inner join should work. However, You could also try left outer join, expand only customer code and then filter out null values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, you could create a list of customer code from customer table and based on that list filter fact table.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Hope this helps!!&lt;/P&gt;
&lt;P&gt;If this solved your problem, please accept it as a solution and a kudos!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Shahariar Hafiz&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 09:46:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Filter-down-Data-in-a-Fact-table-Power-Query/m-p/4608319#M148026</guid>
      <dc:creator>shafiz_p</dc:creator>
      <dc:date>2025-03-13T09:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: Filter down Data in a Fact table Power Query</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Filter-down-Data-in-a-Fact-table-Power-Query/m-p/4608481#M148032</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="711451" data-lia-user-login="MVenables" class="lia-mention lia-mention-user"&gt;MVenables&lt;/a&gt;&amp;nbsp;using M code&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;= Table.SelectRows(CustomerInvoice, each List.Contains(StarCustomer[CustomerCode], [CustomerCode]))&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 11:04:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Filter-down-Data-in-a-Fact-table-Power-Query/m-p/4608481#M148032</guid>
      <dc:creator>techies</dc:creator>
      <dc:date>2025-03-13T11:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: Filter down Data in a Fact table Power Query</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Filter-down-Data-in-a-Fact-table-Power-Query/m-p/4612732#M148177</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="711451" data-lia-user-login="MVenables" class="lia-mention lia-mention-user"&gt;MVenables&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="645372" data-lia-user-login="techies" class="lia-mention lia-mention-user"&gt;techies&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="736379" data-lia-user-login="shafiz_p" class="lia-mention lia-mention-user"&gt;shafiz_p&lt;/a&gt;&amp;nbsp; for the helpful repsonses.&lt;BR /&gt;&lt;BR /&gt;May I ask if you have gotten this issue resolved?&lt;BR /&gt;If it is solved, please mark the helpful reply or share your solution and accept it as solution, it will be helpful for other members of the community who have similar problems as yours to solve it faster.&lt;BR /&gt;&lt;BR /&gt;Thank you for being a valued member of the Microsoft Fabric Community Forum!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 11:35:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Filter-down-Data-in-a-Fact-table-Power-Query/m-p/4612732#M148177</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-17T11:35:00Z</dc:date>
    </item>
  </channel>
</rss>

