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
T_Deufel
Regular Visitor

Only load referenced data from dataflow

Hello! 🙂

 

i have a hard time understanding filtering options of dataflows. Given the following example:

 

Table1 (Fact table which stores the movement of certain parts) :

PartIdProductionStepDate
1Step A21.03.2024
2Step A21.03.2024
3Step A21.03.2024

 

Table2 (Dim table which stores master data of all produced parts with > 2 million rows):

PartIdData
1Lorem Ipsum
2Lorem Ipsum
3Lorem Ipsum
  
1992924Lorem Ipsum

 

I can now filter Table1 to my desires, e.g. ProductionStep = Step A and Date = 21.03.2024. In the dashboard, i now want to show the masterdata from Table2. To achieve this, i can build a relationship between Table1 and Table2 based on the PartId column. 

 

The problem i am facing now is, that i always have to load the complete Table2, even though i only would need that PartIds which exist in Table1

 

Is there a solution to omit the complete load of Table2?

 

In a setting with an SQL Server, i could achieve this either by joining the Table1 and Table2 beforehand or by using a CTE and filter both Tables using the CTE. I cant think of an easy way doing this with a Dataflow, without alterting the dataflow itself.

 

Many thanks for your input, Timo

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@T_Deufel,

 

Three ideas:

 

1. Modify the dataflow to use custom SQL that performs the filter.

2. Modify the dataflow by creating an inner join between Table1 and Table2.

3. In the pbix, use Power Query to create an inner join between Table1 and Table2 (Merge Queries). This will leave your dataflow intact, which may be preferred if any downstream objects need the full Table2.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

1 REPLY 1
DataInsights
Super User
Super User

@T_Deufel,

 

Three ideas:

 

1. Modify the dataflow to use custom SQL that performs the filter.

2. Modify the dataflow by creating an inner join between Table1 and Table2.

3. In the pbix, use Power Query to create an inner join between Table1 and Table2 (Merge Queries). This will leave your dataflow intact, which may be preferred if any downstream objects need the full Table2.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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