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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors