Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
JemmaD
Helper V
Helper V

Stop small table loading thousands of rows

Hi there,

I have a table where in M Query I pull columns from fact tables and de-duplicate to create a small dimension table.

I disabled the load of this, then referenced it in the loaded dimension table in the hope this would prevent the dimension table loading all the thousands of rows from the fact tables when I apply steps. However that hasn't worked! Is there a way I can force the new small table to simply load the de-duplicated rows and not look at all the steps that happened in the referenced table?

 

I hope this makes sense.

1 REPLY 1
amitchandak
Super User
Super User

@JemmaD , First add a table, then do any action on that. Then use its reference in all other tables and create dimensions. Also the fact should be created using another reference not the first table you loaded 

 

example

amitchandak_0-1718614759346.png

 

 

Code of new table

 

let
    Source = Geography,
    #"Removed Columns" = Table.RemoveColumns(Source,{"City Id", "City"}),
    #"Removed Duplicates" = Table.Distinct(#"Removed Columns")
in
    #"Removed Duplicates"

 

Do not add any step in the very first table, they will executed as this is a reference

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Top Solution Authors