Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us at FabCon Vienna from September 15-18, 2025, for the ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM. Get registered
I have a week-dataframe which contains a list of specfic weeks.
But now i want to load the fact table into a fact-dataframe, but only for the weeks that do exist in the week-dataframe
Do can i do this?
Thanks in advanced
Solved! Go to Solution.
Are you trying to use a Copy Data activity to do this or using a Notebook?
I'm not sure you can do much table filtering in a Copy Data activity.
If you are using a notebook, then you can simply do this using an inner join, but selecting only the columns from the first table. (The equivalent of a 'WHERE IN' clause.)
result = tableA.join(tableB, tableA.col1 == tableB.col99, "inner") \
.select(tableA.col1, tableA.col2, tableA.col3)
Are you trying to use a Copy Data activity to do this or using a Notebook?
I'm not sure you can do much table filtering in a Copy Data activity.
If you are using a notebook, then you can simply do this using an inner join, but selecting only the columns from the first table. (The equivalent of a 'WHERE IN' clause.)
result = tableA.join(tableB, tableA.col1 == tableB.col99, "inner") \
.select(tableA.col1, tableA.col2, tableA.col3)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Fabric update to learn about new features.
User | Count |
---|---|
2 | |
2 | |
2 | |
2 | |
2 |